summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDenis Declara <declara91@gmail.com>2012-04-04 06:42:22 +0000
committerDenis Declara <declara91@gmail.com>2012-04-04 06:42:22 +0000
commit591b007232d0806995bc24c7dd93babdec283834 (patch)
tree5958f9b9943f9b944357484f37836da95b54dd6b /src
parentAnchor widget now reads the last alignment from the settings. Anchor selectio... (diff)
downloadinkscape-591b007232d0806995bc24c7dd93babdec283834.tar.gz
inkscape-591b007232d0806995bc24c7dd93babdec283834.zip
Changed enum used for alignment, which hopefully will fix daily deb builds.
(bzr r11073.1.11)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/tile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/tile.cpp b/src/ui/dialog/tile.cpp
index ab3781630..2e5e3f822 100644
--- a/src/ui/dialog/tile.cpp
+++ b/src/ui/dialog/tile.cpp
@@ -737,7 +737,7 @@ GridArrangeTab::GridArrangeTab(ArrangeDialog *parent)
// Anchor selection widget
AlignLabel.set_label("Alignment:");
- AlignLabel.set_alignment(Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER);
+ AlignLabel.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_CENTER);
AlignmentSelector.setAlignment(HorizAlign, VertAlign);
AlignmentSelector.on_selectionChanged().connect(sigc::mem_fun(*this, &GridArrangeTab::Align_changed));
TileBox.pack_start(AlignLabel, false, false, MARGIN);