summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/verbs.cpp2
-rw-r--r--src/widgets/gradient-selector.cpp3
2 files changed, 2 insertions, 3 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 8fc6c258c..faa34b387 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -3087,7 +3087,7 @@ Verb *Verb::_base_verbs[] = {
// Technically what we show are unicode code points and not glyphs. The actual glyphs shown are determined by the
// shaping engines.
new DialogVerb(SP_VERB_DIALOG_GLYPHS, "DialogGlyphs", N_("_Unicode Characters..."),
- N_("Select Unicode characters from a palette"), INKSCAPE_ICON("gtk-select-font")),
+ N_("Select Unicode characters from a palette"), INKSCAPE_ICON("accessories-character-map")),
// FIXME: Probably better to either use something from the icon naming spec or ship our own "select-color" icon
// TRANSLATORS: "Swatches" means: color samples
new DialogVerb(SP_VERB_DIALOG_SWATCHES, "DialogSwatches", N_("S_watches..."),
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);