diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2006-09-20 12:48:29 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2006-09-20 12:48:29 +0000 |
commit | a72ec09ed3d7161b372ee43ff18a828964add512 (patch) | |
tree | 7936071dd641b85206220d8e02e639847ef7e740 /src/gui/setup.cpp | |
parent | 525056d28875eea1c17fd181fe4e51a42c9ce30b (diff) | |
download | mana-a72ec09ed3d7161b372ee43ff18a828964add512.tar.gz mana-a72ec09ed3d7161b372ee43ff18a828964add512.tar.bz2 mana-a72ec09ed3d7161b372ee43ff18a828964add512.tar.xz mana-a72ec09ed3d7161b372ee43ff18a828964add512.zip |
Added a slider for controlling the OverlayDetail (based on a patch by VictorSan)
Diffstat (limited to 'src/gui/setup.cpp')
-rw-r--r-- | src/gui/setup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/setup.cpp b/src/gui/setup.cpp index 1fe22ea6..7deb39ff 100644 --- a/src/gui/setup.cpp +++ b/src/gui/setup.cpp @@ -43,7 +43,7 @@ Setup::Setup(): Window("Setup") { int width = 230; - int height = 225; + int height = 245; setContentSize(width, height); const char *buttonNames[] = { @@ -58,7 +58,7 @@ Setup::Setup(): } TabbedContainer *panel = new TabbedContainer(); - panel->setDimension(gcn::Rectangle(5, 5, 220, 185)); + panel->setDimension(gcn::Rectangle(5, 5, 220, 205)); panel->setOpaque(false); SetupTab *tab; |