summaryrefslogtreecommitdiffstats
path: root/src/widgets/gradient-selector.cpp
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-07-19 18:05:20 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-07-19 19:01:15 +0000
commit27a724af2f5169e6d5c8403d1f422328e25ba88e (patch)
tree71c61b3944c3b98ca04b53c67282c0d2e5b89c86 /src/widgets/gradient-selector.cpp
parenticons: Fix non-symbolic icon that got symbolic by accident (diff)
downloadinkscape-27a724af2f5169e6d5c8403d1f422328e25ba88e.tar.gz
inkscape-27a724af2f5169e6d5c8403d1f422328e25ba88e.zip
icons: replace deprecated gtk stock icons
They seems to be missing in some environments already... Fixes https://gitlab.com/inkscape/inkscape/issues/335
Diffstat (limited to '')
-rw-r--r--src/widgets/gradient-selector.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/widgets/gradient-selector.cpp b/src/widgets/gradient-selector.cpp
index cb0ce09f2..755dfa439 100644
--- a/src/widgets/gradient-selector.cpp
+++ b/src/widgets/gradient-selector.cpp
@@ -186,9 +186,8 @@ static void sp_gradient_selector_init(SPGradientSelector *sel)
gtk_button_set_relief(GTK_BUTTON(sel->add), GTK_RELIEF_NONE);
gtk_widget_set_tooltip_text( sel->add, _("Create a duplicate gradient"));
- // FIXME: Probably better to either use something from the icon naming spec or ship our own "edit-gradient" icon
sel->edit = gtk_button_new();
- gradsel_style_button(sel->edit, INKSCAPE_ICON("gtk-edit"));
+ gradsel_style_button(sel->edit, INKSCAPE_ICON("edit"));
sel->nonsolid.push_back(sel->edit);
gtk_box_pack_start (GTK_BOX (hb), sel->edit, FALSE, FALSE, 0);