Fix customize toolbar dialog centering, patch by Dave Townsend <mossop.bugzilla@blueprintit.co.uk>, r=mconnor

This commit is contained in:
gavin%gavinsharp.com 2006-05-29 16:18:45 +00:00
Родитель 4c59f08333
Коммит 658095827b
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -100,9 +100,13 @@ function repositionDialog()
{
// Position the dialog touching the bottom of the toolbox and centered with
// it.
var width;
if (document.documentElement.hasAttribute("width"))
width = document.documentElement.getAttribute("width");
else
width = parseInt(document.documentElement.style.width);
var screenX = gToolbox.boxObject.screenX
+ ((gToolbox.boxObject.width
- parseInt(document.documentElement.style.width)) / 2);
+ ((gToolbox.boxObject.width - width) / 2);
var screenY = gToolbox.boxObject.screenY + gToolbox.boxObject.height;
window.moveTo(screenX, screenY);