summaryrefslogtreecommitdiffstats
path: root/src/shape-editor.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-04-17 20:57:57 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-04-17 20:57:57 +0000
commit01f61dcd0fb06269539c9cbe8ef885d3a4b3b5c5 (patch)
tree0d87b6d9132a9c46a56c7835662e0e818ddc04fd /src/shape-editor.cpp
parentGrid: added dotted rendering of rectangular grid. Fixed bug in emphasized lin... (diff)
downloadinkscape-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.cpp4
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) {