author | alwin <alwin> | 2004-10-31 23:09:17 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-10-31 23:09:17 (UTC) |
commit | 01fb5d6957984fe6fe5ed2109a024be7e8159d16 (patch) (unidiff) | |
tree | 861b351a92ee229815b51c822a31ba24c2ef3506 | |
parent | 708e8dfb654a89d105dc70f65a306917214f3b0e (diff) | |
download | opie-01fb5d6957984fe6fe5ed2109a024be7e8159d16.zip opie-01fb5d6957984fe6fe5ed2109a024be7e8159d16.tar.gz opie-01fb5d6957984fe6fe5ed2109a024be7e8159d16.tar.bz2 |
minimum slideshow time should be 1 not 0
-rw-r--r-- | noncore/graphics/opie-eye/gui/basesetup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/graphics/opie-eye/gui/basesetup.cpp b/noncore/graphics/opie-eye/gui/basesetup.cpp index 11974cf..1a354a5 100644 --- a/noncore/graphics/opie-eye/gui/basesetup.cpp +++ b/noncore/graphics/opie-eye/gui/basesetup.cpp | |||
@@ -17,7 +17,7 @@ BaseSetup::BaseSetup(Opie::Core::OConfig *a_cfg,QWidget * parent, const char * n | |||
17 | m_SlideShowTime->setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding,QSizePolicy::Fixed)); | 17 | m_SlideShowTime->setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding,QSizePolicy::Fixed)); |
18 | m_SlideShowTime->setButtonSymbols( QSpinBox::PlusMinus ); | 18 | m_SlideShowTime->setButtonSymbols( QSpinBox::PlusMinus ); |
19 | m_SlideShowTime->setMaxValue( 60 ); | 19 | m_SlideShowTime->setMaxValue( 60 ); |
20 | m_SlideShowTime->setMinValue(0); | 20 | m_SlideShowTime->setMinValue(1); |
21 | m_SlideShowTime->setValue( 2 ); | 21 | m_SlideShowTime->setValue( 2 ); |
22 | m_SlideShowTime->setSuffix(tr(" seconds")); | 22 | m_SlideShowTime->setSuffix(tr(" seconds")); |
23 | 23 | ||
@@ -36,7 +36,7 @@ BaseSetup::BaseSetup(Opie::Core::OConfig *a_cfg,QWidget * parent, const char * n | |||
36 | m_MainLayout->addItem( spacer1 ); | 36 | m_MainLayout->addItem( spacer1 ); |
37 | 37 | ||
38 | int stime = m_cfg->readNumEntry("base_slideshowtimeout",2); | 38 | int stime = m_cfg->readNumEntry("base_slideshowtimeout",2); |
39 | if (stime<0) stime=2; | 39 | if (stime<1) stime=2; |
40 | if (stime>60) stime=60; | 40 | if (stime>60) stime=60; |
41 | m_SlideShowTime->setValue(stime); | 41 | m_SlideShowTime->setValue(stime); |
42 | 42 | ||