fixes bug 216800 "drag-n-drop to a GTK2 mozilla build often fails" patch=glen@imodulo.com r+sr=blizzard

This commit is contained in:
darin%meer.net 2003-10-11 23:38:38 +00:00
Родитель 2ef1caab23
Коммит f2d2906229
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -1841,7 +1841,10 @@ nsWindow::OnDragDropEvent(GtkWidget *aWidget,
// clear any drag leave timer that might be pending so that it
// doesn't get processed when we actually go out to get data.
mDragLeaveTimer = 0;
if (mDragLeaveTimer) {
mDragLeaveTimer->Cancel();
mDragLeaveTimer = 0;
}
// set the last window to this
mLastDragMotionWindow = innerMostWidget;