Anyone know if it is possible to remove the purple circle that pops up when you are close enough to detect a node, when you have mini-map icons turned on? I like to see the nodes in the distance, but when there are a mass of circles it can be hard to see if there is actually a node there.
*shameless plug*
Switch to GatherMate .. it allows you to set the circle colors to what ever you wish including settings the alpha and detection/switch ranges,
I've taken to modifying the code in the following way:
In the file: AddOns\Cartographer\Cartographer_Notes\Notes.lua
search for TrackCircle then search for poi:Show(), you are looking for the first poi:Show() after TrackCircle.
Replace poi:Show() with
if (icon == path .. "TrackCircle") then poi:Hide(); else poi:Show();
Pink circle will no longer show up ever. I dislike the Pink Circle because even though it has a hole in the middle its still a solid texture. When you hover your mouse over it, you get the Cartographer tooltip telling you what MIGHT be there. I want to hover my mouse over the gold dot and see what IS there.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
Switch to GatherMate .. it allows you to set the circle colors to what ever you wish including settings the alpha and detection/switch ranges,
In the file: AddOns\Cartographer\Cartographer_Notes\Notes.lua
search for TrackCircle then search for poi:Show(), you are looking for the first poi:Show() after TrackCircle.
Replace poi:Show() with
if (icon == path .. "TrackCircle") then poi:Hide(); else poi:Show();
Pink circle will no longer show up ever. I dislike the Pink Circle because even though it has a hole in the middle its still a solid texture. When you hover your mouse over it, you get the Cartographer tooltip telling you what MIGHT be there. I want to hover my mouse over the gold dot and see what IS there.