Bug 499822 - Toaster notification boxes are slow on Windows CE, r=vlad

This commit is contained in:
Paul O’Shannessy 2009-07-08 14:59:08 -07:00
Родитель 24a8423c9b
Коммит 530dbd7a17
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -142,6 +142,7 @@ function onAlertLoad()
if (window.innerWidth == contentDim.width + 1)
--window.innerWidth;
#ifndef WINCE
// Start with a 1px width/height, because 0 causes trouble with gtk1/2
gCurrentSize = 1;
@ -156,6 +157,7 @@ function onAlertLoad()
gFinalSize = window.outerHeight;
window.outerHeight = gCurrentSize;
}
#endif
// Determine position
var x = gOrigin & NS_ALERT_LEFT ? screen.availLeft :
@ -171,7 +173,11 @@ function onAlertLoad()
window.moveTo(x, y);
#ifndef WINCE
setTimeout(animateAlert, gSlideTime);
#else
setTimeout(closeAlert, gOpenTime);
#endif
}
function animate(step)