diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2008-05-28 20:22:37 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2008-05-28 20:22:37 +0000 |
commit | 2dfd979ea4c0c1a1046461ac21213d8211175c36 (patch) | |
tree | 89dc6755031aa4ad3b5b794ae11958c5ab53b43a /src/gui/setup.cpp | |
parent | b4bf0aba860093121dff7f469d4cd19a578a9c09 (diff) | |
download | mana-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.cpp | 4 |
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; |