summaryrefslogtreecommitdiff
path: root/src/gui/setup.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2006-08-26 20:19:39 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2006-08-26 20:19:39 +0000
commitbe3b639a879a5a8eb73b2e652683da222796af44 (patch)
tree35d5ed3957c283dbb49fd9b92112c7cc919b7ba9 /src/gui/setup.cpp
parentef82a7df8aafb569f6db5e77ff2dd67fde860148 (diff)
downloadmana-client-be3b639a879a5a8eb73b2e652683da222796af44.tar.gz
mana-client-be3b639a879a5a8eb73b2e652683da222796af44.tar.bz2
mana-client-be3b639a879a5a8eb73b2e652683da222796af44.tar.xz
mana-client-be3b639a879a5a8eb73b2e652683da222796af44.zip
Applied patch by Pascal, adding sliders to configure the scrolling behaviour
and a checkbox to enable or disable the joystick.
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 73b22e5a..1fe22ea6 100644
--- a/src/gui/setup.cpp
+++ b/src/gui/setup.cpp
@@ -43,7 +43,7 @@ Setup::Setup():
Window("Setup")
{
int width = 230;
- int height = 185;
+ int height = 225;
setContentSize(width, height);
const char *buttonNames[] = {
@@ -58,7 +58,7 @@ Setup::Setup():
}
TabbedContainer *panel = new TabbedContainer();
- panel->setDimension(gcn::Rectangle(5, 5, 220, 150));
+ panel->setDimension(gcn::Rectangle(5, 5, 220, 185));
panel->setOpaque(false);
SetupTab *tab;