Thread Tools Display Modes
09-28-13, 12:15 PM   #1
Aelendil
A Defias Bandit
Join Date: Jul 2010
Posts: 2
Cant move the objective tracker anymore.

For some reason with /nui movers I can't move the objective tracker anymore it doesn't show as moveable.
 
09-28-13, 12:37 PM   #2
grhuff07
A Murloc Raider
Join Date: Sep 2013
Posts: 7
I noticed this in the last version as well (.37), so I don't think it was introduced in .38.
 
09-28-13, 01:07 PM   #3
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,892
what about in the versions before 5.4 came out. The blizzard objective frame has had some code changes in 5.4 although I've not looked into it myself as I use my own objective frame. But the one in nUI is not a customized one so its possible that blizz have overridden nUI's moving code with its own.
__________________
 
09-28-13, 02:32 PM   #4
grhuff07
A Murloc Raider
Join Date: Sep 2013
Posts: 7
Originally Posted by Xrystal View Post
what about in the versions before 5.4 came out. The blizzard objective frame has had some code changes in 5.4 although I've not looked into it myself as I use my own objective frame. But the one in nUI is not a customized one so its possible that blizz have overridden nUI's moving code with its own.
I've only recently started playing WoW and my first version of nUI was .37 so I won't be much help here.
 
09-28-13, 03:39 PM   #5
rj_killeen
A Murloc Raider
Join Date: Oct 2011
Posts: 4
I have the same issue, and it has only re-set the Objectives position with this newest download.

Previous updates did not re-set the Objectives.
 
09-28-13, 06:17 PM   #6
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,892
Not quite sure what happened with the file as there are no comments in the update to say it had been changed but if you look at the following block of code and find the similar block in the nUI_Movers.lua file in the plugin folder and change it to the block I show afterward it should allow you to use the mover system again ... and hopefully Scott will spot this post

Lua Code:
  1. {
  2.     frameName = "QuestWatchFrame",
  3.     labelText = "Watched Quests",
  4.     parent = nil,
  5.     addOn = nil,
  6.     exclusionFrames =
  7.     {
  8.         [1] = "WatchFrame"
  9.     },
  10.     requiredFrames = nil,
  11.     defaultPosition =
  12.     {
  13.         anchorPt = "TOPLEFT",
  14.         relativeTo = "nUI_TopBars",
  15.         relativePt = "BOTTOMLEFT",
  16.         xOfs = 50,
  17.         yOds = 120
  18.     },
  19. },

Lua Code:
  1. {
  2. --  frameName = "QuestWatchFrame",
  3.     frameName = "WatchFrame",
  4.     labelText = "Watched Quests",
  5.     parent = nil,
  6.     addOn = nil,
  7. --  exclusionFrames =
  8. --  {
  9. --      [1] = "WatchFrame"
  10. --  },
  11.     requiredFrames = nil,
  12.     defaultPosition =
  13.     {
  14.         anchorPt = "TOPLEFT",
  15.         relativeTo = "nUI_TopBars",
  16.         relativePt = "BOTTOMLEFT",
  17.         xOfs = 50,
  18.         yOds = 120
  19.     },
  20. },
__________________
 
09-28-13, 06:37 PM   #7
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Ah... yeah... my bad. I was doing some testing trying to sort out some taint stuff and forgot to fix it.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
09-28-13, 07:12 PM   #8
grhuff07
A Murloc Raider
Join Date: Sep 2013
Posts: 7
Originally Posted by grhuff07 View Post
I've only recently started playing WoW and my first version of nUI was .37 so I won't be much help here.
I just realized I wrote these comments in the wrong thread. I meant for them to be in the bug report for the combat log movement issue. I noticed that issue with nUI 5.07.37 so it wasn't introduced in 5.07.38. Sorry for the confusion there.
 
09-29-13, 01:33 AM   #9
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,892
Scott, also, dugi noticed that around line 792 there is also a WatchFrame move code line that has been commented out. This stops the actual watchframe itself from moving.

The two changes together will both add the watchframe to the mover system and move the actual watchframe when you mover the mover for it.
__________________
 
09-30-13, 05:07 AM   #10
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Roger that -- If I can get the time, I'll try to get a fix out tonight.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Bug Reports » Cant move the objective tracker anymore.

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off