vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | |
2 | -- turn on or off debugging |
||
3 | MONKEYLIB_DEBUG = false; |
||
4 | |||
5 | |||
6 | -- change the error window so we can actually READ the error |
||
7 | if (MONKEYLIB_DEBUG) then |
||
8 | |||
9 | -- Another Blizzard hack, I just can't see errors without this |
||
10 | ScriptErrors:SetWidth(600); |
||
11 | ScriptErrors_Message:SetWidth(580); |
||
12 | ScriptErrors:SetPoint("BOTTOM", "UIParent", "BOTTOM", 0, 100); |
||
13 | ScriptErrors:SetPoint("TOP", "UIParent", "BOTTOM", 0, 220); |
||
14 | end |
||
15 | |||
16 | |||
17 | -- global "constants" |
||
18 | MONKEYLIB_VERSION = "2.4"; |
||
19 | MONKEYLIB_TITLE_COLOUR = { r = 1.0, g = 0.5, b = 0 }; |