Skip to content

Commit

Permalink
Fix rendering of out-of-process window list with hidpi
Browse files Browse the repository at this point in the history
Fix #754
  • Loading branch information
lukefromdc committed Mar 21, 2018
1 parent 0b15ea1 commit fb2abbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applets/wncklet/window-list.c
Expand Up @@ -427,8 +427,6 @@ gboolean window_list_applet_fill(MatePanelApplet* applet)
g_signal_connect(G_OBJECT(tasklist->tasklist), "destroy", G_CALLBACK(destroy_tasklist), tasklist);

g_signal_connect(G_OBJECT(tasklist->applet), "size_allocate", G_CALLBACK(applet_size_allocate), tasklist);
tasklist_update(tasklist);
gtk_widget_show(tasklist->tasklist);

gtk_container_add(GTK_CONTAINER(tasklist->applet), tasklist->tasklist);

Expand Down Expand Up @@ -484,6 +482,8 @@ gboolean window_list_applet_fill(MatePanelApplet* applet)

g_object_unref(action_group);

tasklist_update(tasklist);
gtk_widget_show(tasklist->tasklist);
gtk_widget_show(tasklist->applet);

return TRUE;
Expand Down

0 comments on commit fb2abbf

Please sign in to comment.