csd: use the correct icon name for close button

The icon is called window-close-symbolic.
This commit is contained in:
Matthias Clasen 2013-06-29 18:15:01 -04:00
parent da55c86d3f
commit 534a7a9397

View File

@ -5169,7 +5169,7 @@ update_window_buttons (GtkWindow *window)
priv->gdk_type_hint == GDK_WINDOW_TYPE_HINT_NORMAL)
{
button = gtk_button_new ();
image = gtk_image_new_from_icon_name ("window-delete-symbolic", GTK_ICON_SIZE_MENU);
image = gtk_image_new_from_icon_name ("window-close-symbolic", GTK_ICON_SIZE_MENU);
gtk_style_context_add_class (gtk_widget_get_style_context (button), "titlebutton");
g_object_set (image, "use-fallback", TRUE, NULL);
gtk_container_add (GTK_CONTAINER (button), image);