don't hide the dock when the mouse goes into a dock app
This commit is contained in:
parent
b27d9d21a3
commit
b2dfa2fc9b
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue