From kde-commits Mon Oct 29 19:32:07 2007 From: Chris Howells Date: Mon, 29 Oct 2007 19:32:07 +0000 To: kde-commits Subject: extragear/plasma/applets/frame Message-Id: <1193686327.531778.15886.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=119368633408415 SVN commit 730835 by howells: Allow a minimum time of 1 seconds - I find 10 seconds *waaay* too long and get extremely bored waiting for the next image to appear. M +1 -1 frame.cpp --- trunk/extragear/plasma/applets/frame/frame.cpp #730834:730835 @@ -214,7 +214,7 @@ ui.picRequester->comboBox()->insertItem(0, "http://tools.wikimedia.de/~daniel/potd/potd.php/commons/400x300"); ui.slideShowRequester->setMode(KFile::Directory); ui.slideShowRequester->setGeometry(ui.picRequester->frameGeometry()); - ui.TimeSpinner->setMinimumTime(QTime(0,0,10)); // minimum to 10 seconds + ui.TimeSpinner->setMinimumTime(QTime(0,0,1)); // minimum to 1 seconds } ui.frameCheckBox->setChecked(m_frame); ui.shadowCheckBox->setChecked(m_shadow);