[gimp/icons-wip] icons: Bug 759904



commit fcdf8bcda8a9f3b340034adfd8dee2eaf3337658
Author: klausstaedtler <staedtler-przyborski web de>
Date:   Wed Jun 29 18:49:08 2016 +0200

    icons: Bug 759904
    
    
    patch:
    replace "list-add" by "gimp-new"
    
    gimp/app/actions/colormap-actions.c:  { "colormap-add-color-from-fg", "list-add",
    gimp/app/actions/colormap-actions.c:  { "colormap-add-color-from-bg", "list-add",
    gimp/app/widgets/gimpsettingsbox.c:  image = gtk_image_new_from_icon_name ("list-add", 
GTK_ICON_SIZE_MENU);
    
    
    patch:
    replace "list-remove" by "gimp-delete"
    
    gimp/app/actions/documents-actions.c:  { "documents-remove", "list-remove",

 app/actions/colormap-actions.c  |    4 ++--
 app/actions/documents-actions.c |    2 +-
 app/widgets/gimpsettingsbox.c   |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/app/actions/colormap-actions.c b/app/actions/colormap-actions.c
index f95fd58..485b0e8 100644
--- a/app/actions/colormap-actions.c
+++ b/app/actions/colormap-actions.c
@@ -54,13 +54,13 @@ static const GimpActionEntry colormap_actions[] =
 
 static const GimpEnumActionEntry colormap_add_color_actions[] =
 {
-  { "colormap-add-color-from-fg", "list-add",
+  { "colormap-add-color-from-fg", GIMP_STOCK_NEW,
     NC_("colormap-action", "_Add Color from FG"), "",
     NC_("colormap-action", "Add current foreground color"),
     FALSE, FALSE,
     GIMP_HELP_INDEXED_PALETTE_ADD },
 
-  { "colormap-add-color-from-bg", "list-add",
+  { "colormap-add-color-from-bg", GIMP_STOCK_NEW,
     NC_("colormap-action", "_Add Color from BG"), "",
     NC_("colormap-action", "Add current background color"),
     TRUE, FALSE,
diff --git a/app/actions/documents-actions.c b/app/actions/documents-actions.c
index 8970f35..b302474 100644
--- a/app/actions/documents-actions.c
+++ b/app/actions/documents-actions.c
@@ -72,7 +72,7 @@ static const GimpActionEntry documents_actions[] =
     G_CALLBACK (documents_show_in_file_manager_cmd_callback),
     GIMP_HELP_DOCUMENT_SHOW_IN_FILE_MANAGER },
 
-  { "documents-remove", "list-remove",
+  { "documents-remove", GIMP_STOCK_DELETE,
     NC_("documents-action", "Remove _Entry"), NULL,
     NC_("documents-action", "Remove the selected entry"),
     G_CALLBACK (documents_remove_cmd_callback),
diff --git a/app/widgets/gimpsettingsbox.c b/app/widgets/gimpsettingsbox.c
index e9d42a4..8022c7f 100644
--- a/app/widgets/gimpsettingsbox.c
+++ b/app/widgets/gimpsettingsbox.c
@@ -284,7 +284,7 @@ gimp_settings_box_constructed (GObject *object)
   gtk_box_pack_start (GTK_BOX (hbox2), button, FALSE, FALSE, 0);
   gtk_widget_show (button);
 
-  image = gtk_image_new_from_icon_name ("list-add", GTK_ICON_SIZE_MENU);
+  image = gtk_image_new_from_icon_name (GIMP_STOCK_NEW, GTK_ICON_SIZE_MENU);
   gtk_container_add (GTK_CONTAINER (button), image);
   gtk_widget_show (image);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]