From: tweenk Date: Sat, 11 Apr 2009 20:29:03 +0000 (+0000) Subject: Fix two missing icons in live effect parameters X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f11bd920208c0d5ed1ac31c13ba9983063cb95da;p=inkscape.git Fix two missing icons in live effect parameters --- 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(_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(_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();