summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/attrdialog.cpp
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2019-10-12 19:37:49 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2019-10-12 19:37:49 +0000
commit2b52075bb40c00807fbf42c9f7d62dada27525ac (patch)
tree59fac6f4062823f7ae62e44529c9763479f13a78 /src/ui/dialog/attrdialog.cpp
parentRevert "Remove unused "nopref" variant of effects" (diff)
downloadinkscape-2b52075bb40c00807fbf42c9f7d62dada27525ac.tar.gz
inkscape-2b52075bb40c00807fbf42c9f7d62dada27525ac.zip
Add icons to show help in set defauls LPE parameters
Diffstat (limited to 'src/ui/dialog/attrdialog.cpp')
-rw-r--r--src/ui/dialog/attrdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/attrdialog.cpp b/src/ui/dialog/attrdialog.cpp
index 7368fc806..5921d334d 100644
--- a/src/ui/dialog/attrdialog.cpp
+++ b/src/ui/dialog/attrdialog.cpp
@@ -155,13 +155,13 @@ AttrDialog::AttrDialog()
Gtk::Label *helpreturn = Gtk::manage(new Gtk::Label(_("Shift+Return new line")));
helpreturn->get_style_context()->add_class("inksmall");
Gtk::Button *apply = Gtk::manage(new Gtk::Button());
- Gtk::Image *icon = Gtk::manage(sp_get_icon_image("on", 26));
+ Gtk::Image *icon = Gtk::manage(sp_get_icon_image("on-outline", 26));
apply->set_relief(Gtk::RELIEF_NONE);
icon->show();
apply->add(*icon);
apply->signal_clicked().connect(sigc::mem_fun(*this, &AttrDialog::valueEditedPop));
Gtk::Button *cancel = Gtk::manage(new Gtk::Button());
- icon = Gtk::manage(sp_get_icon_image("off", 26));
+ icon = Gtk::manage(sp_get_icon_image("off-outline", 26));
cancel->set_relief(Gtk::RELIEF_NONE);
icon->show();
cancel->add(*icon);