all repos — openbox @ a8843b58c59f7042aa78289c3fc323793e16100f

openbox fork - make it a bit more like ryudo

update the last user interaction timestamp during a move/resize of the focused window
Dana Jansens danakj@orodu.net
commit

a8843b58c59f7042aa78289c3fc323793e16100f

parent

5ff0d07aba5399e1c8eeb8064d1d800e78c4fe9b

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

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

@@ -21,6 +21,7 @@ #include "grab.h"

#include "framerender.h" #include "screen.h" #include "client.h" +#include "focus.h" #include "frame.h" #include "openbox.h" #include "resist.h"

@@ -1084,5 +1085,9 @@ do_resize(); /* ...so try resize if there is more change pending */

used = TRUE; } #endif + + if (used && moveresize_client == focus_client) + event_update_user_time(); + return used; }