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,7 +1509,9 @@ static void event_handle_dock(ObDock *s, XEvent *e)
|
||||||
dock_hide(FALSE);
|
dock_hide(FALSE);
|
||||||
break;
|
break;
|
||||||
case LeaveNotify:
|
case LeaveNotify:
|
||||||
dock_hide(TRUE);
|
/* don't hide when moving into a dock app */
|
||||||
|
if (e->xcrossing.detail != NotifyInferior)
|
||||||
|
dock_hide(TRUE);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue