View Single Post
02-21-24, 08:28 AM   #9
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,941
Originally Posted by atshn View Post
Appreciate you taking the time to do that. Me and my old eyes thank you. Didn't have much time to test it in combat but did notice that the hotkey text acting as a range indicator on both pet and action bars no longer works.
oh, thought I had that covered with the RANGE_INDICATOR addition if there isn't a hot key set up

You could try using this in the hotkey functions and see if that works better

Lua Code:
  1. if ( binding == "" ) then
  2.    hotkey:SetText(RANGE_INDICATOR);
  3.    hotkey:Hide();
  4. else
  5.    hotkey:SetText("|cFF00FF00" .. binding .. "|r")
  6. end

or simplify it further to

Lua Code:
  1. if ( binding ~= "" ) then
  2.     hotkey:SetText("|cFF00FF00" .. binding .. "|r")
  3. end
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 02-21-24 at 08:30 AM.
  Reply With Quote