all repos — openbox @ c51d6ebe1152876bfa6d02b5174489e016d2c830

openbox fork - make it a bit more like ryudo

add debug print
Dana Jansens danakj@orodu.net
commit

c51d6ebe1152876bfa6d02b5174489e016d2c830

parent

9e44bed8b88299295f1341f17f3ae9a9ba6e0925

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

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

@@ -60,8 +60,12 @@ 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()) && c != data->any.c) + if ((c = client_under_pointer()) && c != data->any.c) { + ob_debug_type(OB_DEBUG_FOCUS, + "Generating fake enter because we did a " + "mouse-event action"); event_enter_client(c); + } } } }