- Missing localization for the welcome window has been added.
This commit is contained in:
parent
1917a4d8a5
commit
dae28af236
1 changed files with 12 additions and 2 deletions
14
startup.lua
14
startup.lua
|
|
@ -1823,8 +1823,18 @@ function _G._detalhes:Start()
|
|||
C_Timer.After (2, function()
|
||||
_detalhes:RefreshPlaterIntegration()
|
||||
end)
|
||||
|
||||
C_Timer.After (0.5, function() if (ScriptErrorsFrame) then ScriptErrorsFrame:Hide() end end)
|
||||
|
||||
--> suppress warnings for the first few seconds
|
||||
CLOSE_SCRIPTERRORWINDOW = function()
|
||||
if (ScriptErrorsFrame) then
|
||||
ScriptErrorsFrame:Hide()
|
||||
end
|
||||
end
|
||||
if (ScriptErrorsFrame) then
|
||||
ScriptErrorsFrame:HookScript ("OnShow", CLOSE_SCRIPTERRORWINDOW)
|
||||
ScriptErrorsFrame:Hide()
|
||||
end
|
||||
C_Timer.After (5, function() _G ["CLOSE_SCRIPTERRORWINDOW"] = nil end)
|
||||
end
|
||||
|
||||
_detalhes.AddOnLoadFilesTime = GetTime()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue