diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-09 04:08:57 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-09 04:08:57 +0000 |
| commit | a3f8c5c45a1ff323fc088cc5af49ab48d5679e54 (patch) | |
| tree | 4363b131e431574a1e51e8fef092aa6acee88132 /openbox/keyboard.c | |
| parent | 4546925b589d30c46f3bced74a02b3d531de894c (diff) | |
button presses which run actions during interactive actions will cancel the action.
when you cancel switching desktops, don't go back, just stop.
Diffstat (limited to 'openbox/keyboard.c')
| -rw-r--r-- | openbox/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/keyboard.c b/openbox/keyboard.c index f6fe64e6..d8f35bcc 100644 --- a/openbox/keyboard.c +++ b/openbox/keyboard.c @@ -249,7 +249,7 @@ gboolean keyboard_process_interactive_grab(const XEvent *e, ObClient **client) handled = TRUE; } } else if (e->type == ButtonPress) { - cancel = FALSE; + cancel = TRUE; done = TRUE; handled = FALSE; } |
