From kde-commits Wed Sep 16 20:33:50 2009 From: Bram Schoenmakers Date: Wed, 16 Sep 2009 20:33:50 +0000 To: kde-commits Subject: branches/KDE/4.3/kdeplasma-addons/applets/life Message-Id: <1253133230.064977.6415.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=125313324112231 SVN commit 1024566 by bram: Respect the step interval setting, don't default to 1 second. M +1 -1 life.cpp --- branches/KDE/4.3/kdeplasma-addons/applets/life/life.cpp #1024565:1024566 @@ -65,7 +65,7 @@ void Life::startUpdateTimer() { connect(&timer, SIGNAL(timeout()), this, SLOT(updateGame())); - timer.start(1000); + timer.start( stepInterval * 1000 ); } void Life::updateGame()