- Missing localization for the welcome window has been added.

This commit is contained in:
Tercio
2018-07-19 16:40:11 -03:00
parent 1917a4d8a5
commit dae28af236
+12 -2
View File
@@ -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()