-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 | |||
@@ -18,5 +18,5 @@ BaseSetup::BaseSetup(Opie::Core::OConfig *a_cfg,QWidget * parent, const char * n | |||
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")); |
@@ -37,5 +37,5 @@ BaseSetup::BaseSetup(Opie::Core::OConfig *a_cfg,QWidget * parent, const char * n | |||
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); |