summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEd Halley <ed@halley.cc>2009-04-06 03:19:29 +0000
committerspeare <speare@users.sourceforge.net>2009-04-06 03:19:29 +0000
commit7f2624dfe767a1b7130736ba3f84865fab5d5317 (patch)
tree33530c193e4d0d96ea63bb6401c95bc92dfe3558 /src
parentfunctional noop: xml/repr-io.cpp: Simplify a calculation. (diff)
downloadinkscape-7f2624dfe767a1b7130736ba3f84865fab5d5317.tar.gz
inkscape-7f2624dfe767a1b7130736ba3f84865fab5d5317.zip
Fix for bug #338521 - align node buttons did not match 0.46 ordering or names. IDs got swapped.
(bzr r7633)
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 6d2ed20da..09fe89cff 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::Y, false);
+ 0, Geom::X, false);
addNodeButton(INKSCAPE_ICON_ALIGN_VERTICAL_NODES,
_("Align selected nodes vertically"),
- 1, Geom::X, false);
+ 1, Geom::Y, false);
addNodeButton(INKSCAPE_ICON_DISTRIBUTE_HORIZONTAL_NODE,
_("Distribute selected nodes horizontally"),
2, Geom::X, true);