summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2013-06-15 21:18:59 +0000
committerMartin Owens <doctormo@gmail.com>2013-06-15 21:18:59 +0000
commitf00a6c14f8a159429ded3d6ca1918e2981698ef0 (patch)
tree78735c2cc9c92f74f7eb136fc9afe57fe44db7d2 /src
parentFix crash for external symbol documents, should never select these items. (diff)
downloadinkscape-f00a6c14f8a159429ded3d6ca1918e2981698ef0.tar.gz
inkscape-f00a6c14f8a159429ded3d6ca1918e2981698ef0.zip
Improve icons for symbols dialog
(bzr r12376)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/symbols.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/symbols.cpp b/src/ui/dialog/symbols.cpp
index 5649a7ee6..5eb7084d6 100644
--- a/src/ui/dialog/symbols.cpp
+++ b/src/ui/dialog/symbols.cpp
@@ -221,7 +221,7 @@ SymbolsDialog::SymbolsDialog( gchar const* prefsPath ) :
in_sizes = 2; // Default 32px
button = Gtk::manage(new Gtk::Button());
button->add(*Gtk::manage(Glib::wrap(
- sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("zoom-in")))) );
+ sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("symbol-bigger")))) );
button->set_tooltip_text(_("Make Icons bigger by zooming in."));
button->set_relief( Gtk::RELIEF_NONE );
button->set_focus_on_click( false );
@@ -230,7 +230,7 @@ SymbolsDialog::SymbolsDialog( gchar const* prefsPath ) :
button = Gtk::manage(new Gtk::Button());
button->add(*Gtk::manage(Glib::wrap(
- sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("zoom-out")))) );
+ sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("symbol-smaller")))) );
button->set_tooltip_text(_("Make Icons smaller by zooming out."));
button->set_relief( Gtk::RELIEF_NONE );
button->set_focus_on_click( false );
@@ -239,7 +239,7 @@ SymbolsDialog::SymbolsDialog( gchar const* prefsPath ) :
fitSymbol = Gtk::manage(new Gtk::ToggleButton());
fitSymbol->add(*Gtk::manage(Glib::wrap(
- sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("zoom-fit-page")))) );
+ sp_icon_new (Inkscape::ICON_SIZE_SMALL_TOOLBAR, INKSCAPE_ICON("symbol-fit")))) );
fitSymbol->set_tooltip_text(_("Toggle 'fit' symbols in icon space."));
fitSymbol->set_relief( Gtk::RELIEF_NONE );
fitSymbol->set_focus_on_click( false );