summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/light-and-power/light.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/settings/light-and-power/light.cpp b/core/settings/light-and-power/light.cpp
index b56ae11..e959603 100644
--- a/core/settings/light-and-power/light.cpp
+++ b/core/settings/light-and-power/light.cpp
@@ -60,5 +60,5 @@ LightSettings::LightSettings( QWidget* parent, const char* name, WFlags fl )
int interval;
- interval = config.readNumEntry( "Interval_Dim", 30 );
+ interval = config.readNumEntry( "Interval_Dim", 20 );
interval_dim->setValue( interval );
- interval = config.readNumEntry( "Interval_LightOff", 20 );
+ interval = config.readNumEntry( "Interval_LightOff", 30 );
interval_lightoff->setValue( interval );
@@ -102,3 +102,3 @@ void LightSettings::accept()
if ( qApp->focusWidget() )
- qApp->focusWidget()->clearFocus();
+ qApp->focusWidget()->clearFocus();
@@ -121,3 +121,3 @@ void LightSettings::accept()
config.writeEntry( "Brightness",
- (brightness->maxValue()-brightness->value())*255/brightness->maxValue() );
+ (brightness->maxValue()-brightness->value())*255/brightness->maxValue() );
config.write();
@@ -130,3 +130,3 @@ void LightSettings::applyBrightness()
int bright = (brightness->maxValue()-brightness->value())*255
- / brightness->maxValue();
+ / brightness->maxValue();
set_fl(bright);
@@ -137,4 +137,4 @@ void LightSettings::done(int r)
{
- QDialog::done(r);
- close ( );
+ QDialog::done(r);
+ close ( );
}