all repos — openbox @ fb952d863a2358e77d0937ccee88f10094e30462

openbox fork - make it a bit more like ryudo

don't fake an enter event if where still in the same window
Mikael Magnusson mikachu@comhem.se
commit

fb952d863a2358e77d0937ccee88f10094e30462

parent

a38012f2fff30aa48913c5020e72f537c742542f

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

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

@@ -57,7 +57,8 @@ that moves windows our from under the cursor, the enter

event will come as a GrabNotify which is ignored, so this makes a fake enter event */ - if ((c = client_under_pointer())) + if ((c = client_under_pointer()) + && c != data->any.c) event_enter_client(c); } }