summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-simplify.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-07-21 15:05:54 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-07-21 15:05:54 +0000
commit94d507366a97e2d5fbfb7d2b2c32f69830844a13 (patch)
tree4d61e21afd62f6b9488a540d5f11d20e1b652c5f /src/live_effects/lpe-simplify.cpp
parentFix build (diff)
downloadinkscape-94d507366a97e2d5fbfb7d2b2c32f69830844a13.tar.gz
inkscape-94d507366a97e2d5fbfb7d2b2c32f69830844a13.zip
Add icons on/off to use in simplify LPE toggle buttons
(bzr r13341.1.90)
Diffstat (limited to 'src/live_effects/lpe-simplify.cpp')
-rw-r--r--src/live_effects/lpe-simplify.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/live_effects/lpe-simplify.cpp b/src/live_effects/lpe-simplify.cpp
index 17b97eda9..1a02375cd 100644
--- a/src/live_effects/lpe-simplify.cpp
+++ b/src/live_effects/lpe-simplify.cpp
@@ -30,13 +30,13 @@ LPESimplify::LPESimplify(LivePathEffectObject *lpeobject)
threshold(_("Roughly threshold:"), _("Roughly threshold:"), "threshold", &wr, this, 0.003),
helper_size(_("Helper size:"), _("Helper size"), "helper_size", &wr, this, 2.),
nodes(_("Helper nodes"), _("Show helper nodes"), "nodes", &wr, this, false,
- "", INKSCAPE_ICON("system-run"), INKSCAPE_ICON("process-stop")),
+ "", INKSCAPE_ICON("on"), INKSCAPE_ICON("off")),
handles(_("Helper handles"), _("Show helper handles"), "handles", &wr, this, false,
- "", INKSCAPE_ICON("system-run"), INKSCAPE_ICON("process-stop")),
+ "", INKSCAPE_ICON("on"), INKSCAPE_ICON("off")),
simplifyindividualpaths(_("Paths separately"), _("Simplifying paths (separately)"), "simplifyindividualpaths", &wr, this, false,
- "", INKSCAPE_ICON("system-run"), INKSCAPE_ICON("process-stop")),
+ "", INKSCAPE_ICON("on"), INKSCAPE_ICON("off")),
simplifyJustCoalesce(_("Just coalesce"), _("Simplify just coalesce"), "simplifyJustCoalesce", &wr, this, false,
- "", INKSCAPE_ICON("system-run"), INKSCAPE_ICON("process-stop"))
+ "", INKSCAPE_ICON("on"), INKSCAPE_ICON("off"))
{
registerParameter(dynamic_cast<Parameter *>(&steps));
registerParameter(dynamic_cast<Parameter *>(&threshold));