summaryrefslogtreecommitdiff
path: root/src/themes/standard/theme.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/themes/standard/theme.c')
-rw-r--r--src/themes/standard/theme.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/themes/standard/theme.c b/src/themes/standard/theme.c
index 36b947d..feabb71 100644
--- a/src/themes/standard/theme.c
+++ b/src/themes/standard/theme.c
@@ -779,7 +779,11 @@ GtkWindow* create_notification(UrlClickedCb url_clicked)
atk_object_set_name(atkobj, "");
atk_object_set_description(atkobj, "Closes the notification.");
+#if GTK_CHECK_VERSION (3, 10, 0)
+ image = gtk_image_new_from_icon_name ("window-close", GTK_ICON_SIZE_MENU);
+#else
image = gtk_image_new_from_stock(GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU);
+#endif
gtk_widget_show(image);
gtk_container_add(GTK_CONTAINER(close_button), image);