summaryrefslogtreecommitdiff
path: root/src/gui/setup.cpp
diff options
context:
space:
mode:
authorPhilipp Sehmisch <tmw@crushnet.org>2008-05-28 20:22:37 +0000
committerPhilipp Sehmisch <tmw@crushnet.org>2008-05-28 20:22:37 +0000
commit2dfd979ea4c0c1a1046461ac21213d8211175c36 (patch)
tree89dc6755031aa4ad3b5b794ae11958c5ab53b43a /src/gui/setup.cpp
parentb4bf0aba860093121dff7f469d4cd19a578a9c09 (diff)
downloadMana-2dfd979ea4c0c1a1046461ac21213d8211175c36.tar.gz
Mana-2dfd979ea4c0c1a1046461ac21213d8211175c36.tar.bz2
Mana-2dfd979ea4c0c1a1046461ac21213d8211175c36.tar.xz
Mana-2dfd979ea4c0c1a1046461ac21213d8211175c36.zip
Added slider for controlling particleEmitterSkip (overall quality of particle effects) to video setup menu.
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 54bf01f4..c895d166 100644
--- a/src/gui/setup.cpp
+++ b/src/gui/setup.cpp
@@ -49,7 +49,7 @@ Setup::Setup():
{
setCloseButton(true);
int width = 310;
- int height = 245;
+ int height = 265;
setContentSize(width, height);
const char *buttonNames[] = {
@@ -64,7 +64,7 @@ Setup::Setup():
}
TabbedContainer *panel = new TabbedContainer();
- panel->setDimension(gcn::Rectangle(5, 5, width, 205));
+ panel->setDimension(gcn::Rectangle(5, 5, width, height - 40));
panel->setOpaque(false);
SetupTab *tab;