diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-05 02:48:39 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-05 02:48:39 +0000 |
| commit | fde5ca09e9ea7ab08b6dc06723f19bad6d03af22 (patch) | |
| tree | 58e8a107b0a60d7fb87a05afe8f72a451194afdf /openbox/action.c | |
| parent | 9389c7e6c80edc216173981a69eda525d6111547 (diff) | |
when restoring from show-desktop mode because a window is going to be focused, then don't restore focus how it was before showing the desktop.
Diffstat (limited to 'openbox/action.c')
| -rw-r--r-- | openbox/action.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/action.c b/openbox/action.c index 1af396a4..b54e888e 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -1932,17 +1932,17 @@ void action_toggle_dockautohide(union ActionData *data) void action_toggle_show_desktop(union ActionData *data) { - screen_show_desktop(!screen_showing_desktop); + screen_show_desktop(!screen_showing_desktop, TRUE); } void action_show_desktop(union ActionData *data) { - screen_show_desktop(TRUE); + screen_show_desktop(TRUE, TRUE); } void action_unshow_desktop(union ActionData *data) { - screen_show_desktop(FALSE); + screen_show_desktop(FALSE, TRUE); } void action_break_chroot(union ActionData *data) |
