all repos — openbox @ b2dfa2fc9bdd012cbb7e58a99ddc30440b14d40d

openbox fork - make it a bit more like ryudo

don't hide the dock when the mouse goes into a dock app
Dana Jansens danakj@orodu.net
commit

b2dfa2fc9bdd012cbb7e58a99ddc30440b14d40d

parent

b27d9d21a3ada323acaa714d4055137d162aad76

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M openbox/event.copenbox/event.c

@@ -1509,7 +1509,9 @@ case EnterNotify:

dock_hide(FALSE); break; case LeaveNotify: - dock_hide(TRUE); + /* don't hide when moving into a dock app */ + if (e->xcrossing.detail != NotifyInferior) + dock_hide(TRUE); break; } }