From 18c675031f718523586e72f5e1450bb33d457841 Mon Sep 17 00:00:00 2001 From: Guillaume Melquiond Date: Sun, 21 Oct 2007 19:03:43 +0000 Subject: Fixed missing pixels at bottom and right. --- ChangeLog | 1 + src/gui/menuwindow.cpp | 9 +++------ 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 00132908..5802edbe 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24,6 +24,7 @@ * src/resources/action.cpp: Fixed double-free of sprite actions. * data/maps/new_1-1.tmx: Added back a Lua script for testing. * src/gui/trade.cpp: Added persistent positioning. + * src/gui/menuwindow.cpp: Fixed missing pixels at bottom and right. 2007-10-20 Guillaume Melquiond 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) -- cgit v1.2.3-70-g09d2