diff options
author | Elijah Newren <newren@gmail.com> | 2005-02-20 07:28:57 +0000 |
---|---|---|
committer | Elijah Newren <newren@src.gnome.org> | 2005-02-20 07:28:57 +0000 |
commit | 490b59642f4ffde96a8d8b06339d88c8b85780d9 (patch) | |
tree | 69ddd069fb9abcb513e91a834d526b22cccc75ec | |
parent | 64a7b69aa51ee8d1bae87fa2f8802200c37e69f2 (diff) | |
download | libwnck-490b59642f4ffde96a8d8b06339d88c8b85780d9.tar.gz |
Backport of fix in the development branch; patch from Juerg Billeter to
2005-02-20 Elijah Newren <newren@gmail.com>
Backport of fix in the development branch; patch from Juerg
Billeter to fix windows from all screen being shown when tasklist
is first created.
* libwnck/tasklist.c: (wnck_tasklist_realize):
update lists after realization.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | libwnck/tasklist.c | 2 |
2 files changed, 11 insertions, 0 deletions
@@ -1,6 +1,15 @@ 2005-02-20 Elijah Newren <newren@gmail.com> Backport of fix in the development branch; patch from Juerg + Billeter to fix windows from all screen being shown when tasklist + is first created. + + * libwnck/tasklist.c: (wnck_tasklist_realize): + update lists after realization. + +2005-02-20 Elijah Newren <newren@gmail.com> + + Backport of fix in the development branch; patch from Juerg Billeter with modifications by Mark. * libwnck/tasklist.c: diff --git a/libwnck/tasklist.c b/libwnck/tasklist.c index 4646d1a..4e464fb 100644 --- a/libwnck/tasklist.c +++ b/libwnck/tasklist.c @@ -1198,6 +1198,8 @@ wnck_tasklist_realize (GtkWidget *widget) #endif (* GTK_WIDGET_CLASS (tasklist_parent_class)->realize) (widget); + + wnck_tasklist_update_lists (tasklist); } static void |