author | leseb <leseb> | 2002-07-13 10:01:40 (UTC) |
---|---|---|
committer | leseb <leseb> | 2002-07-13 10:01:40 (UTC) |
commit | 804c1ce9554548d1c0f46d28eb1b8f63b4341fdb (patch) (unidiff) | |
tree | 45145247dfdb3725d57048082083a0c0b141d6f1 | |
parent | d38e47a3b39d84fe3758ebac9dd9af916bb9eb5a (diff) | |
download | opie-804c1ce9554548d1c0f46d28eb1b8f63b4341fdb.zip opie-804c1ce9554548d1c0f46d28eb1b8f63b4341fdb.tar.gz opie-804c1ce9554548d1c0f46d28eb1b8f63b4341fdb.tar.bz2 |
Fix config read
-rw-r--r-- | noncore/styles/theme/othemebase.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/noncore/styles/theme/othemebase.cpp b/noncore/styles/theme/othemebase.cpp index 00cea03..21d16f2 100644 --- a/noncore/styles/theme/othemebase.cpp +++ b/noncore/styles/theme/othemebase.cpp | |||
@@ -972,8 +972,12 @@ void OThemeBase::applyResourceGroup( Config *config, int i, QString *copyfrom, Q | |||
972 | // together in the misc group, but this makes an easier to read config. | 972 | // together in the misc group, but this makes an easier to read config. |
973 | if ( i == SliderGroove ) | 973 | if ( i == SliderGroove ) |
974 | roundedSlider = config->readBoolEntry( "SmallGroove", false ); | 974 | roundedSlider = config->readBoolEntry( "SmallGroove", false ); |
975 | else if ( i == ActiveTab || i == InactiveTab ) | 975 | else if ( i == ActiveTab ) { |
976 | aTabLine = iTabLine = config->readBoolEntry( "BottomLine", true ); | 976 | aTabLine = config->readBoolEntry( "BottomLine", true ); |
977 | } | ||
978 | else if ( i == InactiveTab ) { | ||
979 | iTabLine = config->readBoolEntry( "BottomLine", true ); | ||
980 | } | ||
977 | else if ( i == Splitter ) | 981 | else if ( i == Splitter ) |
978 | splitterWidth = config->readNumEntry( "Width", 10 ); | 982 | splitterWidth = config->readNumEntry( "Width", 10 ); |
979 | else if ( i == ComboBox || i == ComboBoxDown ) { | 983 | else if ( i == ComboBox || i == ComboBoxDown ) { |