diff options
author | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-10-21 19:03:43 +0000 |
---|---|---|
committer | Guillaume Melquiond <guillaume.melquiond@gmail.com> | 2007-10-21 19:03:43 +0000 |
commit | 18c675031f718523586e72f5e1450bb33d457841 (patch) | |
tree | 0ddf923be1033a654bea57b8367fba1babc2b13f /src/gui/menuwindow.cpp | |
parent | 963340edef64e5823e514d0c4bebe51fc428ba51 (diff) | |
download | mana-client-18c675031f718523586e72f5e1450bb33d457841.tar.gz mana-client-18c675031f718523586e72f5e1450bb33d457841.tar.bz2 mana-client-18c675031f718523586e72f5e1450bb33d457841.tar.xz mana-client-18c675031f718523586e72f5e1450bb33d457841.zip |
Fixed missing pixels at bottom and right.
Diffstat (limited to 'src/gui/menuwindow.cpp')
-rw-r--r-- | src/gui/menuwindow.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/gui/menuwindow.cpp b/src/gui/menuwindow.cpp index 8d4d184d..560ec40a 100644 --- a/src/gui/menuwindow.cpp +++ b/src/gui/menuwindow.cpp @@ -67,22 +67,19 @@ MenuWindow::MenuWindow(): N_("Setup"), 0 }; - int x = 0, y = 3, h = 0; + int x = 0, h = 0; for (const char **curBtn = buttonNames; *curBtn; curBtn++) { gcn::Button *btn = new Button(gettext(*curBtn), *curBtn, &listener); - btn->setPosition(x, y); + btn->setPosition(x, 0); add(btn); x += btn->getWidth() + 3; h = btn->getHeight(); } + setPosition(windowContainer->getWidth() - x - 3, 3); setContentSize(x - 3, h); - setDefaultSize(windowContainer->getWidth() - getWidth() - 1, - 0, - x - 3, - y + h); } void MenuWindow::draw(gcn::Graphics *graphics) |