diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2006-06-11 10:36:31 +0000 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2006-06-11 10:36:31 +0000 |
| commit | 48e3f64bc0a50ebf51d339787a0c7fb09c62c9cb (patch) | |
| tree | c26cf137c2e94cb03c6d14707936fe3d2d18750d /openbox | |
| parent | dd489976687342c82bb8c8e884a7af7c08d364fc (diff) | |
must assign return of g_list_insert_before to list, the start address may have changed
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/focus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/focus.c b/openbox/focus.c index b81e5632..4f598ec5 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -749,7 +749,7 @@ static void to_bottom(ObClient *c, guint d) /* insert before first iconic window */ for (it = focus_order[d]; it && !((ObClient*)it->data)->iconic; it = g_list_next(it)); - g_list_insert_before(focus_order[d], it, c); + focus_order[d] = g_list_insert_before(focus_order[d], it, c); } } |
