diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-28 08:11:02 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-28 08:11:02 +0000 |
| commit | 92bea590c0eff5f56f70093dfa1edef2f65b113f (patch) | |
| tree | 21218baf0a7ad50cbca81f0b2988ce1cb1826d49 /openbox/screen.c | |
| parent | 42bbf005c81d6c5cf27cdcf7ca50443210b7ed17 (diff) | |
let a window be 'moved' to a new desktop without actually show/hiding it. useful for sending a window when following it, so theres no flash/flicker
Diffstat (limited to 'openbox/screen.c')
| -rw-r--r-- | openbox/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/screen.c b/openbox/screen.c index a051d250..5cf2bc55 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -244,7 +244,7 @@ void screen_set_num_desktops(guint num) for (it = client_list; it != NULL; it = it->next) { Client *c = it->data; if (c->desktop >= num) - client_set_desktop(c, num - 1); + client_set_desktop(c, num - 1, FALSE); } dispatch_ob(Event_Ob_NumDesktops, num, old); |
