diff options
| author | bulia byak <buliabyak@gmail.com> | 2007-04-17 20:57:57 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2007-04-17 20:57:57 +0000 |
| commit | 01f61dcd0fb06269539c9cbe8ef885d3a4b3b5c5 (patch) | |
| tree | 0d87b6d9132a9c46a56c7835662e0e818ddc04fd /src/shape-editor.cpp | |
| parent | Grid: added dotted rendering of rectangular grid. Fixed bug in emphasized lin... (diff) | |
| download | inkscape-01f61dcd0fb06269539c9cbe8ef885d3a4b3b5c5.tar.gz inkscape-01f61dcd0fb06269539c9cbe8ef885d3a4b3b5c5.zip | |
flipping patch by maximilian albert
(bzr r2916)
Diffstat (limited to 'src/shape-editor.cpp')
| -rw-r--r-- | src/shape-editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shape-editor.cpp b/src/shape-editor.cpp index d9eaf11bc..1a0f319da 100644 --- a/src/shape-editor.cpp +++ b/src/shape-editor.cpp @@ -412,9 +412,9 @@ void ShapeEditor::select_prev () { sp_nodepath_select_prev (this->nodepath); } -void ShapeEditor::flip (NR::Dim2 axis) { +void ShapeEditor::flip (NR::Dim2 axis, NR::Maybe<NR::Point> center) { if (this->nodepath) - sp_nodepath_flip (this->nodepath, axis); + sp_nodepath_flip (this->nodepath, axis, center); } void ShapeEditor::distribute (NR::Dim2 axis) { |
