diff options
| author | Jabiertxo Arraiza Cenoz <jtx@jtx-desktop.markerlab.es> | 2017-12-28 18:44:25 +0000 |
|---|---|---|
| committer | Jabiertxo Arraiza Cenoz <jtx@jtx-desktop.markerlab.es> | 2017-12-28 18:44:25 +0000 |
| commit | 2ebc7ad774aa6fd19c684464e35ce9129f8ae341 (patch) | |
| tree | c09257feacfe2fe0a5bf57b65e1d2e751ade0318 /src/verbs.cpp | |
| parent | Stop using deprecated gtk_adjustment_value_changed (diff) | |
| download | inkscape-2ebc7ad774aa6fd19c684464e35ce9129f8ae341.tar.gz inkscape-2ebc7ad774aa6fd19c684464e35ce9129f8ae341.zip | |
Add improvements sugested by Eduard Brawn And Moini
Diffstat (limited to 'src/verbs.cpp')
| -rw-r--r-- | src/verbs.cpp | 10 |
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; |
