Skip to content

Commit 4e9a0cc

Browse files
committed
Initial update for Mists of Pandaria classic support
1 parent 91a456e commit 4e9a0cc

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

DialogKey_Numy.toc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
## Interface-BCC: @toc-version-bcc@
55
## Interface-Wrath: @toc-version-wrath@
66
## Interface-Cata: @toc-version-cata@
7+
## Interface-Mists: @toc-version-mists@
78
## Title: DialogKey - Numy Edition
89
## Notes: Lets you hit a key to confirm loot/purchase dialogs, accept/complete quests, select quest rewards, etc. Hit 2 to select a reward then spacebar to complete quests? Easy!
910
## Author: Numy (previous verions by: Foxthorn, N01ch, FuriousProgrammer)

options.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ function ns:AddToWatchlist(frameName)
101101
self:RegisterOptions()
102102
end
103103

104-
local arrowNext = C_Texture.GetAtlasInfo('common-dropdown-icon-next')
105-
local arrowBack = C_Texture.GetAtlasInfo('common-dropdown-icon-back')
106-
local cross = C_Texture.GetAtlasInfo('Radial_Wheel_Icon_Close')
107-
local search = C_Texture.GetAtlasInfo('common-search-magnifyingglass')
104+
local arrowNext = C_Texture.GetAtlasInfo('common-dropdown-icon-next') or error('Failed to find atlas for Next icon')
105+
local arrowBack = C_Texture.GetAtlasInfo('common-dropdown-icon-back') or error('Failed to find atlas for Back icon')
106+
local cross = C_Texture.GetAtlasInfo('Radial_Wheel_Icon_Close') or C_Texture.GetAtlasInfo('XMarksTheSpot') or error('Failed to find atlas for cross icon')
107+
local search = C_Texture.GetAtlasInfo('common-search-magnifyingglass') or error('Failed to find atlas for Search icon')
108108
local width_multiplier = 170
109109

110110
-- only want this for toggles

0 commit comments

Comments
 (0)