-rw-r--r-- | core/settings/light-and-power/light.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/core/settings/light-and-power/light.cpp b/core/settings/light-and-power/light.cpp index 77c6b40..fb40adc 100644 --- a/core/settings/light-and-power/light.cpp +++ b/core/settings/light-and-power/light.cpp | |||
@@ -140,9 +140,9 @@ LightSettings::LightSettings( QWidget* parent, const char* name, WFlags ) | |||
140 | brightness_ac_3->setValue( (maxbright_ac*255 - initbright_ac*maxbright_ac)/255 ); | 140 | brightness_ac_3->setValue( (maxbright_ac*255 - initbright_ac*maxbright_ac)/255 ); |
141 | 141 | ||
142 | 142 | ||
143 | // ipaq sensor | 143 | // ipaq sensor |
144 | config.setGroup( "Ipaqlightsensor" ); | 144 | config.setGroup( "lightsensor" ); |
145 | auto_brightness->setChecked( config.readNumEntry("LightSensor",0) != 0 ); | 145 | auto_brightness->setChecked( config.readNumEntry("LightSensor",0) != 0 ); |
146 | auto_brightness_ac_3->setChecked( config.readNumEntry("LightSensorAC",0) != 0 ); | 146 | auto_brightness_ac_3->setChecked( config.readNumEntry("LightSensorAC",0) != 0 ); |
147 | //LightStepSpin->setValue( config.readNumEntry("Steps", 10 ) ); | 147 | //LightStepSpin->setValue( config.readNumEntry("Steps", 10 ) ); |
148 | //LightMinValueSlider->setValue( config.readNumEntry("MinValue", 70 ) ); | 148 | //LightMinValueSlider->setValue( config.readNumEntry("MinValue", 70 ) ); |
@@ -226,12 +226,11 @@ void LightSettings::accept() | |||
226 | config.writeEntry( "BrightnessAC", | 226 | config.writeEntry( "BrightnessAC", |
227 | ( brightness_ac_3->value()) * 255 / brightness_ac_3->maxValue() ); | 227 | ( brightness_ac_3->value()) * 255 / brightness_ac_3->maxValue() ); |
228 | 228 | ||
229 | 229 | ||
230 | // only make ipaq light sensor entries in config file if on an ipaq | 230 | // only make light sensor stuff appear if the unit has a sensor |
231 | if ( ODevice::inst()->hasLightSensor() ) { | 231 | if ( ODevice::inst()->hasLightSensor() ) { |
232 | // ipaq sensor | 232 | config.setGroup( "lightsensor" ); |
233 | config.setGroup( "Ipaqlightsensor" ); | ||
234 | config.writeEntry( "LightSensor", (int)auto_brightness->isChecked() ); | 233 | config.writeEntry( "LightSensor", (int)auto_brightness->isChecked() ); |
235 | config.writeEntry( "LightSensorAC", (int)auto_brightness_ac_3->isChecked() ); | 234 | config.writeEntry( "LightSensorAC", (int)auto_brightness_ac_3->isChecked() ); |
236 | //config.writeEntry( "Steps", LightStepSpin->value() ); | 235 | //config.writeEntry( "Steps", LightStepSpin->value() ); |
237 | //onfig.writeEntry( "MinValue", LightMinValueSlider->value() ); | 236 | //onfig.writeEntry( "MinValue", LightMinValueSlider->value() ); |
@@ -268,10 +267,8 @@ void LightSettings::applyBrightnessAC() | |||
268 | set_fl(bright); | 267 | set_fl(bright); |
269 | } | 268 | } |
270 | } | 269 | } |
271 | 270 | ||
272 | |||
273 | |||
274 | void LightSettings::done(int r) | 271 | void LightSettings::done(int r) |
275 | { | 272 | { |
276 | QDialog::done(r); | 273 | QDialog::done(r); |
277 | close (); | 274 | close (); |