diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2009-04-11 20:29:03 +0000 |
|---|---|---|
| committer | tweenk <tweenk@users.sourceforge.net> | 2009-04-11 20:29:03 +0000 |
| commit | 2385207ad4a398c93abc71b8f55ed269217a5c06 (patch) | |
| tree | fdf6e21ceb83158195e862d8d01ea429411e0d79 | |
| parent | Fix the "select all" icon and remove stuff causing problems from widgets/icon... (diff) | |
| download | inkscape-2385207ad4a398c93abc71b8f55ed269217a5c06.tar.gz inkscape-2385207ad4a398c93abc71b8f55ed269217a5c06.zip | |
Fix two missing icons in live effect parameters
(bzr r7686)
| -rw-r--r-- | src/live_effects/parameter/path.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/parameter/path.cpp b/src/live_effects/parameter/path.cpp index 5b6af68d2..33e50155c 100644 --- a/src/live_effects/parameter/path.cpp +++ b/src/live_effects/parameter/path.cpp @@ -147,7 +147,7 @@ PathParam::param_newWidget(Gtk::Tooltips * tooltips) static_cast<Gtk::HBox*>(_widget)->pack_start(*pLabel, true, true); tooltips->set_tip(*pLabel, param_tooltip); - Gtk::Widget* pIcon = Gtk::manage( sp_icon_get_icon( "draw_node", Inkscape::ICON_SIZE_BUTTON) ); + Gtk::Widget* pIcon = Gtk::manage( sp_icon_get_icon( "tool-node-editor", Inkscape::ICON_SIZE_BUTTON) ); Gtk::Button * pButton = Gtk::manage(new Gtk::Button()); pButton->set_relief(Gtk::RELIEF_NONE); pIcon->show(); @@ -177,7 +177,7 @@ PathParam::param_newWidget(Gtk::Tooltips * tooltips) static_cast<Gtk::HBox*>(_widget)->pack_start(*pButton, true, true); tooltips->set_tip(*pButton, _("Paste path")); - pIcon = Gtk::manage( sp_icon_get_icon( "edit_clone", Inkscape::ICON_SIZE_BUTTON) ); + pIcon = Gtk::manage( sp_icon_get_icon( "edit-clone", Inkscape::ICON_SIZE_BUTTON) ); pButton = Gtk::manage(new Gtk::Button()); pButton->set_relief(Gtk::RELIEF_NONE); pIcon->show(); |
