summaryrefslogtreecommitdiff
path: root/src/gui/setup.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-14 00:44:16 +0200
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-14 00:44:16 +0200
commitb17d406451228fa83f34a858e1d849c09f1a94e5 (patch)
tree9a10f9195fe36f828b7e591ce6ab898b95218159 /src/gui/setup.cpp
parentec8f340ce6b16b92a450bb6fcdb4ebd40b54f669 (diff)
downloadmana-client-b17d406451228fa83f34a858e1d849c09f1a94e5.tar.gz
mana-client-b17d406451228fa83f34a858e1d849c09f1a94e5.tar.bz2
mana-client-b17d406451228fa83f34a858e1d849c09f1a94e5.tar.xz
mana-client-b17d406451228fa83f34a858e1d849c09f1a94e5.zip
Fixed the worst layout issues that came up with translations
Video and player setup pages now look a bit better when translated or when the font size is increased.
Diffstat (limited to 'src/gui/setup.cpp')
-rw-r--r--src/gui/setup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp
index a1765f24..e73f9b74 100644
--- a/src/gui/setup.cpp
+++ b/src/gui/setup.cpp
@@ -64,7 +64,7 @@ Setup::Setup():
Window(_("Setup"))
{
setCloseButton(true);
- int width = 340;
+ int width = 380;
int height = 360;
setContentSize(width, height);
@@ -104,7 +104,7 @@ Setup::Setup():
add(panel);
Label *version = new Label(FULL_VERSION);
- version->setPosition(5, height - version->getHeight() - 5);
+ version->setPosition(9, height - version->getHeight() - 9);
add(version);
center();