author | llornkcor <llornkcor> | 2002-07-26 00:45:18 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-07-26 00:45:18 (UTC) |
commit | cf32a5b8d6886b357d0f4a6ecdc5b10f78a6a041 (patch) (unidiff) | |
tree | 1761b748606385d299063ce00fc2d32baea1189d | |
parent | f3556b164b79fc2a9607681bd6bdf2a4c8522d5e (diff) | |
download | opie-cf32a5b8d6886b357d0f4a6ecdc5b10f78a6a041.zip opie-cf32a5b8d6886b357d0f4a6ecdc5b10f78a6a041.tar.gz opie-cf32a5b8d6886b357d0f4a6ecdc5b10f78a6a041.tar.bz2 |
fix size limit config
-rw-r--r-- | noncore/settings/sound/soundsettings.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/settings/sound/soundsettings.cpp b/noncore/settings/sound/soundsettings.cpp index 99fccf7..010e0af 100644 --- a/noncore/settings/sound/soundsettings.cpp +++ b/noncore/settings/sound/soundsettings.cpp | |||
@@ -93,8 +93,10 @@ SoundSettings::SoundSettings( QWidget* parent, const char* objname, WFlags fl ) | |||
93 | timeLimitComboBox->setCurrentItem(2); | 93 | timeLimitComboBox->setCurrentItem(2); |
94 | else if(sRate == 10) | 94 | else if(sRate == 10) |
95 | timeLimitComboBox->setCurrentItem(3); | 95 | timeLimitComboBox->setCurrentItem(3); |
96 | else | 96 | else if(sRate == 5) |
97 | timeLimitComboBox->setCurrentItem(4); | 97 | timeLimitComboBox->setCurrentItem(4); |
98 | else | ||
99 | timeLimitComboBox->setCurrentItem(5); | ||
98 | 100 | ||
99 | sixteenBitCheckBox->setChecked(cfg.readNumEntry("SixteenBit", 1)); | 101 | sixteenBitCheckBox->setChecked(cfg.readNumEntry("SixteenBit", 1)); |
100 | 102 | ||