Bug 243720. Dragging stuff into menus should use screenX to avoid ambiguous semantics of clientX in popups. r=timeless,sr=neil

This commit is contained in:
roc+%cs.cmu.edu 2007-05-05 04:37:00 +00:00
Родитель 806a179885
Коммит 56ebe57280
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -219,8 +219,8 @@ var BookmarksMenu = {
case "menu":
case "menuitem":
size = overButtonBoxObject.height;
coordValue = overButtonBoxObject.y-overParentBoxObject.y;
clientCoordValue = aEvent.clientY;
coordValue = overButtonBoxObject.screenY;
clientCoordValue = aEvent.screenY;
break;
default: return BookmarksUtils.DROP_ON;
}