diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2012-01-16 19:27:58 -0500 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2012-01-16 19:28:49 -0500 |
commit | 3795ec8883676e367be1d7f9d6314a1a7e781fd7 (patch) | |
tree | c219e5292879b5837afa610e0f72faa76dc04ffd | |
parent | 1a5cc61ae329d3776e8d75fd46b0e9326f0e7654 (diff) | |
download | nautilus-3795ec8883676e367be1d7f9d6314a1a7e781fd7.tar.gz |
notebook: use a symbolic icon for the tab close image
-rw-r--r-- | src/nautilus-notebook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-notebook.c b/src/nautilus-notebook.c index c4e213949..c9cc5b122 100644 --- a/src/nautilus-notebook.c +++ b/src/nautilus-notebook.c @@ -366,7 +366,7 @@ build_tab_label (NautilusNotebook *nb, NautilusWindowSlot *slot) gtk_widget_set_name (close_button, "nautilus-tab-close-button"); - image = gtk_image_new_from_stock (GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU); + image = gtk_image_new_from_icon_name ("window-close-symbolic", GTK_ICON_SIZE_MENU); gtk_widget_set_tooltip_text (close_button, _("Close tab")); g_signal_connect_object (close_button, "clicked", G_CALLBACK (close_button_clicked_cb), slot, 0); |