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()