diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2009-04-13 23:42:51 +0000 |
|---|---|---|
| committer | tweenk <tweenk@users.sourceforge.net> | 2009-04-13 23:42:51 +0000 |
| commit | 3516ce1dddb083d321f59982bfadb8d25244f948 (patch) | |
| tree | ac59bc7354a4d816a4b8ee5b1781a1b056e6ba4a /src | |
| parent | Complete the legacy icon mapping (diff) | |
| download | inkscape-3516ce1dddb083d321f59982bfadb8d25244f948.tar.gz inkscape-3516ce1dddb083d321f59982bfadb8d25244f948.zip | |
Really fix node alignment icons; add clarifying comment to source.
(bzr r7710)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/dialog/align-and-distribute.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/ui/dialog/align-and-distribute.cpp b/src/ui/dialog/align-and-distribute.cpp index 09fe89cff..a39a09628 100644 --- a/src/ui/dialog/align-and-distribute.cpp +++ b/src/ui/dialog/align-and-distribute.cpp @@ -892,12 +892,15 @@ AlignAndDistribute::AlignAndDistribute() 0, 0); //Node Mode buttons + // NOTE: "align nodes vertically" means "move nodes vertically until they align on a common + // _horizontal_ line". This is analogous to what the "align-vertical-center" means. + // There is no doubt some ambiguity. For this reason the descriptions are different. addNodeButton(INKSCAPE_ICON_ALIGN_HORIZONTAL_NODES, - _("Align selected nodes horizontally"), - 0, Geom::X, false); + _("Align selected nodes to a common vertical line"), + 0, Geom::Y, false); addNodeButton(INKSCAPE_ICON_ALIGN_VERTICAL_NODES, - _("Align selected nodes vertically"), - 1, Geom::Y, false); + _("Align selected nodes to a common horizontal line"), + 1, Geom::X, false); addNodeButton(INKSCAPE_ICON_DISTRIBUTE_HORIZONTAL_NODE, _("Distribute selected nodes horizontally"), 2, Geom::X, true); |
