SVN commit 694863 by sebsauer: allow to disable the timer with values <0 M +1 -1 sensor.cpp --- trunk/KDE/kdeutils/superkaramba/src/sensors/sensor.cpp #694862:694863 @@ -18,7 +18,7 @@ void Sensor::start() { - if (!timer.isActive()) { + if (msec>=0 && !timer.isActive()) { connect(&timer, SIGNAL(timeout()), this, SLOT(update())); timer.start((msec == 0) ? 1000 : msec); }