diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2013-04-10 09:24:37 +0000 |
|---|---|---|
| committer | Jabiertxo Arraiza Zenotz <jtx@jtx.marker.es> | 2013-04-10 09:24:37 +0000 |
| commit | 850b66384422dd18e3d2be7bd75ae05498aa86e2 (patch) | |
| tree | 8c64eab17ee23d0c459cd16416a8f678e86dd350 /src/select-context.cpp | |
| parent | fixing error moving selected nodes (diff) | |
| parent | patch by Damjan Velickovski for rotation snap degrees, Bug 525508 (diff) | |
| download | inkscape-850b66384422dd18e3d2be7bd75ae05498aa86e2.tar.gz inkscape-850b66384422dd18e3d2be7bd75ae05498aa86e2.zip | |
Fixing problem whith changing node sselected - not solved
(bzr r11950.1.87)
Diffstat (limited to 'src/select-context.cpp')
| -rw-r--r-- | src/select-context.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select-context.cpp b/src/select-context.cpp index 2684cbc1e..9a88bcf20 100644 --- a/src/select-context.cpp +++ b/src/select-context.cpp @@ -988,7 +988,7 @@ sp_select_context_root_handler(SPEventContext *event_context, GdkEvent *event) } else if (MOD__CTRL) { sp_selection_rotate(selection, 90); } else if (snaps) { - sp_selection_rotate(selection, 180/snaps); + sp_selection_rotate(selection, 180.0/snaps); } ret = TRUE; break; @@ -1000,7 +1000,7 @@ sp_select_context_root_handler(SPEventContext *event_context, GdkEvent *event) } else if (MOD__CTRL) { sp_selection_rotate(selection, -90); } else if (snaps) { - sp_selection_rotate(selection, -180/snaps); + sp_selection_rotate(selection, -180.0/snaps); } ret = TRUE; break; |
