diff options
| author | Jabiertxo Arraiza Cenoz <jtx@jtx-desktop.markerlab.es> | 2017-12-29 12:01:48 +0000 |
|---|---|---|
| committer | Jabiertxo Arraiza Cenoz <jtx@jtx-desktop.markerlab.es> | 2017-12-29 12:01:48 +0000 |
| commit | b7b437fe121762a2f0c09f46a68d0c850c127806 (patch) | |
| tree | 382546b20c8877802c5a4b88b3eb4571982ecb84 /src/verbs.cpp | |
| parent | Add fix sugested in mailing list to allow diferent LPE on clones (diff) | |
| parent | Revert "Add improvements sugested by Eduard Brawn And Moini" (diff) | |
| download | inkscape-b7b437fe121762a2f0c09f46a68d0c850c127806.tar.gz inkscape-b7b437fe121762a2f0c09f46a68d0c850c127806.zip | |
Merge branch 'master' into CloneOriginalLPEFix
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 10 |
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; |
