summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorJabiertxo Arraiza Cenoz <jtx@jtx-desktop.markerlab.es>2017-12-29 12:01:48 +0000
committerJabiertxo Arraiza Cenoz <jtx@jtx-desktop.markerlab.es>2017-12-29 12:01:48 +0000
commitb7b437fe121762a2f0c09f46a68d0c850c127806 (patch)
tree382546b20c8877802c5a4b88b3eb4571982ecb84 /src/verbs.cpp
parentAdd fix sugested in mailing list to allow diferent LPE on clones (diff)
parentRevert "Add improvements sugested by Eduard Brawn And Moini" (diff)
downloadinkscape-b7b437fe121762a2f0c09f46a68d0c850c127806.tar.gz
inkscape-b7b437fe121762a2f0c09f46a68d0c850c127806.zip
Merge branch 'master' into CloneOriginalLPEFix
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 08a3bb5a0..212fcf357 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -1233,36 +1233,28 @@ void SelectionVerb::perform(SPAction *action, void *data)
break;
case SP_VERB_SELECTION_OFFSET:
- selection->toCurves(true);
sp_selected_path_offset(dt);
break;
case SP_VERB_SELECTION_OFFSET_SCREEN:
- selection->toCurves(true);
sp_selected_path_offset_screen(dt, 1);
break;
case SP_VERB_SELECTION_OFFSET_SCREEN_10:
- selection->toCurves(true);
sp_selected_path_offset_screen(dt, 10);
break;
case SP_VERB_SELECTION_INSET:
- selection->toCurves(true);
sp_selected_path_inset(dt);
break;
case SP_VERB_SELECTION_INSET_SCREEN:
- selection->toCurves(true);
sp_selected_path_inset_screen(dt, 1);
break;
case SP_VERB_SELECTION_INSET_SCREEN_10:
- selection->toCurves(true);
sp_selected_path_inset_screen(dt, 10);
break;
case SP_VERB_SELECTION_DYNAMIC_OFFSET:
- selection->toCurves(true);
sp_selected_path_create_offset_object_zero(dt);
tools_switch(dt, TOOLS_NODES);
break;
case SP_VERB_SELECTION_LINKED_OFFSET:
- selection->toCurves(true);
sp_selected_path_create_updating_offset_object_zero(dt);
tools_switch(dt, TOOLS_NODES);
break;
@@ -1274,11 +1266,9 @@ void SelectionVerb::perform(SPAction *action, void *data)
sp_selected_path_outline(dt, true);
break;
case SP_VERB_SELECTION_SIMPLIFY:
- selection->toCurves(true);
sp_selected_path_simplify(dt);
break;
case SP_VERB_SELECTION_REVERSE:
- selection->toCurves(true);
SelectionHelper::reverse(dt);
break;