summaryrefslogtreecommitdiff
path: root/src/gui/setup_colors.cpp
diff options
context:
space:
mode:
authorTametomo <irarice@gmail.com>2009-04-11 15:39:33 -0600
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-04-15 20:14:16 +0200
commit55a161c970903237539c61d8584a4270dbfa3624 (patch)
tree0dea640a4ce160123548960800c66982497a98cb /src/gui/setup_colors.cpp
parent717ad68ead37d5b28e06f1e5624bae5b73231f37 (diff)
downloadMana-55a161c970903237539c61d8584a4270dbfa3624.tar.gz
Mana-55a161c970903237539c61d8584a4270dbfa3624.tar.bz2
Mana-55a161c970903237539c61d8584a4270dbfa3624.tar.xz
Mana-55a161c970903237539c61d8584a4270dbfa3624.zip
Reduced maximum gradient delay to 100. 400 was just too high of an upper
bound to be useful to users. Signed-off-by: Tametomo <irarice@gmail.com> Signed-off-by: Bjørn Lindeijer <bjorn@lindeijer.nl>
Diffstat (limited to 'src/gui/setup_colors.cpp')
-rw-r--r--src/gui/setup_colors.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/setup_colors.cpp b/src/gui/setup_colors.cpp
index f68c6afe..352338e9 100644
--- a/src/gui/setup_colors.cpp
+++ b/src/gui/setup_colors.cpp
@@ -94,12 +94,12 @@ Setup_Colors::Setup_Colors() :
mGradDelayText = new TextField();
mGradDelayText->setWidth(40);
- mGradDelayText->setRange(20, 400);
+ mGradDelayText->setRange(20, 100);
mGradDelayText->setNumeric(true);
mGradDelayText->addListener(this);
mGradDelayText->setEnabled(false);
- mGradDelaySlider = new Slider(20, 400);
+ mGradDelaySlider = new Slider(20, 100);
mGradDelaySlider->setWidth(180);
mGradDelaySlider->setValue(mGradDelayText->getValue());
mGradDelaySlider->setActionEventId("slider_graddelay");