diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2008-10-29 13:30:26 +0100 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2008-10-29 13:47:27 +0100 |
| commit | 6a35e7c594959ee17392aec76ba074565a63ea57 (patch) | |
| tree | 9b470bb044bd0dca3e444c212c5f76d7787019e9 /openbox/actions/desktop.c | |
| parent | 1970e3c3a82870f12d3d5fba59262d1df24e5cb2 (diff) | |
Bring helper windows when following a window.
Diffstat (limited to 'openbox/actions/desktop.c')
| -rw-r--r-- | openbox/actions/desktop.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/openbox/actions/desktop.c b/openbox/actions/desktop.c index bc70748b..203936d9 100644 --- a/openbox/actions/desktop.c +++ b/openbox/actions/desktop.c @@ -144,7 +144,12 @@ static gboolean run_func(ObActionsData *data, gpointer options) go = o->follow; } - if (go) screen_set_desktop(d, TRUE); + if (go) { + screen_set_desktop(d, TRUE); + if (data->client) + client_bring_helper_windows(data->client); + } + actions_client_move(data, FALSE); } return FALSE; |
