don't hide the dock when the mouse goes into a dock app

This commit is contained in:
Dana Jansens 2007-05-30 17:55:36 +00:00
parent b27d9d21a3
commit b2dfa2fc9b

View file

@ -1509,6 +1509,8 @@ static void event_handle_dock(ObDock *s, XEvent *e)
dock_hide(FALSE);
break;
case LeaveNotify:
/* don't hide when moving into a dock app */
if (e->xcrossing.detail != NotifyInferior)
dock_hide(TRUE);
break;
}