From 3db93a6ab5801ad8f8b67c54cdc8942e08a540aa Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 5 May 2007 16:12:36 +0000 Subject: [PATCH] watch for currenttime --- openbox/grab.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openbox/grab.c b/openbox/grab.c index 3e1066ba..b6a7a939 100644 --- a/openbox/grab.c +++ b/openbox/grab.c @@ -43,7 +43,8 @@ static Time grab_time = CurrentTime; static Time ungrab_time() { Time t = event_curtime; - if (!(t == CurrentTime || event_time_after(t, grab_time))) + if (grab_time == CurrentTime || + !(t == CurrentTime || event_time_after(t, grab_time))) /* When the time moves backward on the server, then we can't use the grab time because that will be in the future. So instead we have to use CurrentTime. -- 2.44.0