From 901e0cd538c26e8d21020915cd6469c95a96855f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 4 Feb 2012 20:19:11 -0600 Subject: Improve handling of selected WM when a WM is removed from the list --- twin/kcmtwin/twindecoration/twindecoration.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'twin') diff --git a/twin/kcmtwin/twindecoration/twindecoration.cpp b/twin/kcmtwin/twindecoration/twindecoration.cpp index b782e3be7..89e6134d5 100644 --- a/twin/kcmtwin/twindecoration/twindecoration.cpp +++ b/twin/kcmtwin/twindecoration/twindecoration.cpp @@ -151,7 +151,7 @@ KWinDecorationModule::KWinDecorationModule(TQWidget* parent, const char* name, c TQVBoxLayout* previewLayout = new TQVBoxLayout(layout, KDialog::spacingHint() ); previewLayout->setMargin( KDialog::marginHint() ); - disabledNotice = new TQLabel("" + i18n("NOTICE") + "
" + i18n("A third party Window Manager has been selected for use with TDE.") + "
" + i18n("As a result, the built-in Window Manager configuration system will not function and has been disabled."), this); + disabledNotice = new TQLabel("" + i18n("NOTICE:") + "
" + i18n("A third party Window Manager has been selected for use with TDE.") + "
" + i18n("As a result, the built-in Window Manager configuration system will not function and has been disabled."), this); previewLayout->addWidget(disabledNotice); disabledNotice->hide(); @@ -756,7 +756,12 @@ void KWinDecorationModule::readConfig( KConfig* conf ) break; } } - thirdpartyWMList->setCurrentItem(swm); + if (found == FALSE) { + thirdpartyWMList->setCurrentItem(0); + } + else { + thirdpartyWMList->setCurrentItem(swm); + } thirdpartyWMArguments->setText(wmArguments); processEnabledDisabledTabs(); -- cgit v1.2.3