summarylogtreecommitdiffstats
path: root/appearance__buttons-menus-icons.patch
diff options
context:
space:
mode:
Diffstat (limited to 'appearance__buttons-menus-icons.patch')
-rw-r--r--appearance__buttons-menus-icons.patch57
1 files changed, 0 insertions, 57 deletions
diff --git a/appearance__buttons-menus-icons.patch b/appearance__buttons-menus-icons.patch
deleted file mode 100644
index 40e209268bfa..000000000000
--- a/appearance__buttons-menus-icons.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-Index: b/gtk+-3.24.14/gtk/gtkbutton.c
-===================================================================
---- a/gtk+-3.24.14/gtk/gtkbutton.c
-+++ b/gtk+-3.24.14/gtk/gtkbutton.c
-@@ -2164,6 +2164,27 @@ gtk_button_set_label (GtkButton *butto
- g_return_if_fail (GTK_IS_BUTTON (button));
-
- priv = button->priv;
-+ if (priv->image == NULL)
-+ {
-+ gchar *use_this_icon = NULL;
-+ if (g_strcmp0 (label, _("_Select")) == 0 || g_strcmp0 (label, _("_OK")) == 0) use_this_icon = "gtk-ok";
-+ else if (g_strcmp0 (label, _("_Cancel")) == 0) use_this_icon = "gtk-cancel";
-+ else if (g_strcmp0 (label, _("_Close")) == 0) use_this_icon = "gtk-close";
-+ else if (g_strcmp0 (label, _("_Yes")) == 0) use_this_icon = "gtk-yes";
-+ else if (g_strcmp0 (label, _("_No")) == 0) use_this_icon = "gtk-no";
-+ else if (g_strcmp0 (label, _("_Print")) == 0) use_this_icon = "gtk-print";
-+ else if (g_strcmp0 (label, _("Pre_view")) == 0) use_this_icon = "gtk-print-preview";
-+ else if (g_strcmp0 (label, _("_Open")) == 0) use_this_icon = "gtk-open";
-+ else if (g_strcmp0 (label, _("_Save")) == 0) use_this_icon = "gtk-save";
-+ else if (g_strcmp0 (label, _("_Apply")) == 0) use_this_icon = "gtk-apply";
-+ else if (g_strcmp0 (label, _("_Stop")) == 0) use_this_icon = "gtk-stop";
-+ else if (g_strcmp0 (label, _("_Delete")) == 0) use_this_icon = "gtk-delete";
-+ else if (g_strcmp0 (label, _("_Remove")) == 0) use_this_icon = "gtk-remove";
-+ else if (g_strcmp0 (label, _("_Add")) == 0) use_this_icon = "gtk-add";
-+ else if (g_strcmp0 (label, _("_Help")) == 0) use_this_icon = "gtk-help";
-+ if (use_this_icon)
-+ g_object_set (button, "image", gtk_image_new_from_icon_name (use_this_icon, GTK_ICON_SIZE_BUTTON), NULL);
-+ }
-
- new_label = g_strdup (label);
- g_free (priv->label_text);
-Index: b/gtk+-3.24.14/gtk/gtkmenuitem.c
-===================================================================
---- a/gtk+-3.24.14/gtk/gtkmenuitem.c
-+++ b/gtk+-3.24.14/gtk/gtkmenuitem.c
-@@ -1010,6 +1010,20 @@ gtk_menu_item_new_with_label (const gcha
- GtkWidget*
- gtk_menu_item_new_with_mnemonic (const gchar *label)
- {
-+ gchar *use_this_icon = NULL;
-+ if (g_strcmp0 (label, _("Copy _Link Address")) == 0 || g_strcmp0 (label, _("_Copy")) == 0
-+ || g_strcmp0 (label, _("Copy URL")) == 0) use_this_icon = "gtk-copy";
-+ else if (g_strcmp0 (label, _("Cu_t")) == 0) use_this_icon = "gtk-cut";
-+ else if (g_strcmp0 (label, _("_Paste")) == 0) use_this_icon = "gtk-paste";
-+ else if (g_strcmp0 (label, _("_Delete")) == 0) use_this_icon = "gtk-delete";
-+ else if (g_strcmp0 (label, _("Select _All")) == 0) use_this_icon = "gtk-select-all";
-+ else if (g_strcmp0 (label, _("_Open Link")) == 0) use_this_icon = "gtk-jump-to";
-+ if (use_this_icon)
-+ return g_object_new (GTK_TYPE_IMAGE_MENU_ITEM,
-+ "use-underline", TRUE,
-+ "label", label,
-+ "image", gtk_image_new_from_icon_name (use_this_icon, GTK_ICON_SIZE_MENU),
-+ NULL);
- return g_object_new (GTK_TYPE_MENU_ITEM,
- "use-underline", TRUE,
- "label", label,