From: Dana Jansens Date: Wed, 29 Sep 2010 20:15:01 +0000 (-0400) Subject: update the last user interaction timestamp during a move/resize of the focused window X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=a8843b58c59f7042aa78289c3fc323793e16100f;p=chaz%2Fopenbox update the last user interaction timestamp during a move/resize of the focused window --- diff --git a/openbox/moveresize.c b/openbox/moveresize.c index 2f68395a..b0543f4a 100644 --- a/openbox/moveresize.c +++ b/openbox/moveresize.c @@ -21,6 +21,7 @@ #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 @@ gboolean moveresize_event(XEvent *e) used = TRUE; } #endif + + if (used && moveresize_client == focus_client) + event_update_user_time(); + return used; }