-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp index 759a469..5cb59c5 100644 --- a/noncore/settings/sound/soundsettings.cpp +++ b/noncore/settings/sound/soundsettings.cpp | |||
@@ -102,9 +102,10 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl ) | |||
102 | connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); | 102 | connect(mic, SIGNAL(valueChanged(int)), this, SLOT(setMic(int))); |
103 | connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); | 103 | connect(qApp, SIGNAL( volumeChanged(bool) ), this, SLOT( volumeChanged(bool) ) ); |
104 | connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) ); | 104 | connect(qApp, SIGNAL( micChanged(bool) ), this, SLOT ( micChanged(bool) ) ); |
105 | |||
105 | connect( LocationComboBox,SIGNAL(activated(const QString &)),this,SLOT( setLocation(const QString &))); | 106 | connect( LocationComboBox,SIGNAL(activated(const QString &)),this,SLOT( setLocation(const QString &))); |
106 | connect( keyComboBox,SIGNAL(activated(const QString &)),this,SLOT(setKeyButton(const QString &))); | 107 | connect( keyComboBox,SIGNAL(activated(const QString &)),this,SLOT( setKeyButton(const QString &))); |
107 | connect( timeLimitComboBox,SIGNAL(activated( const QString &)),this,SLOT(setSizeLimitButton(const QString &))); | 108 | connect( timeLimitComboBox,SIGNAL(activated( const QString &)),this,SLOT( setSizeLimitButton(const QString &))); |
108 | // connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); | 109 | // connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); |
109 | } | 110 | } |
110 | 111 | ||
@@ -256,6 +257,12 @@ void SoundSettings::setKeyButton(const QString &name) { | |||
256 | cfg.setGroup("Defaults"); | 257 | cfg.setGroup("Defaults"); |
257 | cfg.writeEntry( "toggleKey", keyComboBox->currentItem() ); | 258 | cfg.writeEntry( "toggleKey", keyComboBox->currentItem() ); |
258 | keyReset = TRUE; | 259 | keyReset = TRUE; |
260 | if(keyComboBox->currentItem() == 1) | ||
261 | cfg.writeEntry( "hideIcon", 0 ); | ||
262 | else | ||
263 | cfg.writeEntry( "hideIcon", 1); | ||
264 | |||
265 | |||
259 | cfg.write(); | 266 | cfg.write(); |
260 | } | 267 | } |
261 | 268 | ||