summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2009-04-03 02:26:07 +0000
committertweenk <tweenk@users.sourceforge.net>2009-04-03 02:26:07 +0000
commit6209abfcfd34b1564cd60be1baa7bda233513c52 (patch)
tree9590e9cc41e308e13614efc34e8e15a63e5657dd /src
parentSome Morphology Effects polishing again (diff)
downloadinkscape-6209abfcfd34b1564cd60be1baa7bda233513c52.tar.gz
inkscape-6209abfcfd34b1564cd60be1baa7bda233513c52.zip
Fix inverted node alignment actions
(bzr r7610)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/align-and-distribute.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/align-and-distribute.cpp b/src/ui/dialog/align-and-distribute.cpp
index 09fe89cff..6d2ed20da 100644
--- a/src/ui/dialog/align-and-distribute.cpp
+++ b/src/ui/dialog/align-and-distribute.cpp
@@ -894,10 +894,10 @@ AlignAndDistribute::AlignAndDistribute()
//Node Mode buttons
addNodeButton(INKSCAPE_ICON_ALIGN_HORIZONTAL_NODES,
_("Align selected nodes horizontally"),
- 0, Geom::X, false);
+ 0, Geom::Y, false);
addNodeButton(INKSCAPE_ICON_ALIGN_VERTICAL_NODES,
_("Align selected nodes vertically"),
- 1, Geom::Y, false);
+ 1, Geom::X, false);
addNodeButton(INKSCAPE_ICON_DISTRIBUTE_HORIZONTAL_NODE,
_("Distribute selected nodes horizontally"),
2, Geom::X, true);