summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2017-12-30 23:05:09 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2017-12-30 23:05:09 +0000
commit311396e53fc96f89d3d326a9fa2999f9b0eb8492 (patch)
treec6794ff4e04b9c6e5c10f0754acdd69790a9cad5 /src
parentFix message probles on boolops and for example when moving or transforming a ... (diff)
parentBack path operations to curves (diff)
downloadinkscape-311396e53fc96f89d3d326a9fa2999f9b0eb8492.tar.gz
inkscape-311396e53fc96f89d3d326a9fa2999f9b0eb8492.zip
Merge branch 'master' into FixMessages
Diffstat (limited to 'src')
-rw-r--r--src/verbs.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 212fcf357..08a3bb5a0 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -1233,28 +1233,36 @@ 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;
@@ -1266,9 +1274,11 @@ 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;