diff options
author | Timm Bäder <mail@baedert.org> | 2017-01-19 10:02:04 +0100 |
---|---|---|
committer | Timm Bäder <mail@baedert.org> | 2017-01-20 21:37:04 +0100 |
commit | ea897c6df44c37f573b7ed8e81ad87a9fd5b1009 (patch) | |
tree | 02726659b57530b21a5e1f8625ddd6f381bb8824 /gtk/gtkplacessidebar.c | |
parent | 13b001b77ca3907b4ff1246208755478421a7b32 (diff) | |
download | gtk+-ea897c6df44c37f573b7ed8e81ad87a9fd5b1009.tar.gz |
Remove gtk_widget_show_all
Diffstat (limited to 'gtk/gtkplacessidebar.c')
-rw-r--r-- | gtk/gtkplacessidebar.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c index 07a7250017..0665ae1375 100644 --- a/gtk/gtkplacessidebar.c +++ b/gtk/gtkplacessidebar.c @@ -473,7 +473,6 @@ add_place (GtkPlacesSidebar *sidebar, G_CALLBACK (on_button_release_event), row); gtk_container_add (GTK_CONTAINER (sidebar->list_box), GTK_WIDGET (row)); - gtk_widget_show_all (row); return row; } @@ -1334,7 +1333,7 @@ update_places (GtkPlacesSidebar *sidebar) g_object_unref (icon); } - gtk_widget_show_all (GTK_WIDGET (sidebar)); + gtk_widget_show (GTK_WIDGET (sidebar)); /* We want this hidden by default, but need to do it after the show_all call */ gtk_sidebar_row_hide (GTK_SIDEBAR_ROW (sidebar->new_bookmark_row), TRUE); @@ -1575,7 +1574,7 @@ drag_begin_callback (GtkWidget *widget, gtk_widget_set_size_request (window, allocation.width, allocation.height); gtk_container_add (GTK_CONTAINER (window), drag_widget); - gtk_widget_show_all (window); + gtk_widget_show (window); gtk_widget_set_opacity (window, 0.8); gtk_drag_set_icon_widget (context, @@ -2506,7 +2505,6 @@ create_rename_popover (GtkPlacesSidebar *sidebar) gtk_grid_attach (GTK_GRID (grid), entry, 0, 1, 1, 1); gtk_grid_attach (GTK_GRID (grid), button,1, 1, 1, 1); gtk_grid_attach (GTK_GRID (grid), error, 0, 2, 2, 1); - gtk_widget_show_all (grid); gtk_popover_set_default_widget (GTK_POPOVER (popover), button); sidebar->rename_popover = popover; |