update the last user interaction timestamp during a move/resize of the focused window

This commit is contained in:
Dana Jansens 2010-09-29 16:15:01 -04:00
parent 5ff0d07aba
commit a8843b58c5

View file

@ -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;
}