Bug 263103 - Delay being "initialized" until post-window display to prevent us stopping without a UI shown.

JavaScript Debugger only.
r=rginda
This commit is contained in:
silver%warwickcompsoc.co.uk 2004-10-13 02:30:45 +00:00
parent cd89107e7e
commit 425785ced5

View File

@ -578,7 +578,8 @@ function init()
MT_WARN);
}
console.initialized = true;
// Delay being "done" until the window is up.
setTimeout(initPost, 100);
if (console.prefs["saveSettingsOnExit"])
{
@ -591,6 +592,11 @@ function init()
dd ("}");
}
function initPost()
{
console.initialized = true;
}
function destroy ()
{
if (console.prefs["saveLayoutOnExit"])