From 624939fd60e013a46d5bc827d50237403fa0abbc Mon Sep 17 00:00:00 2001 From: Hugo Pereira Da Costa Date: Fri, 4 Sep 2009 20:01:51 +0000 Subject: [PATCH] moved back drawSeparator option to 'basic' tab since it is interlocked with the 'outline active window title' option svn path=/trunk/KDE/kdebase/workspace/; revision=1019932 --- .../nitrogen/config/nitrogenconfigurationui.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/clients/nitrogen/config/nitrogenconfigurationui.cpp b/clients/nitrogen/config/nitrogenconfigurationui.cpp index 0512e48df9..ec93c2478e 100644 --- a/clients/nitrogen/config/nitrogenconfigurationui.cpp +++ b/clients/nitrogen/config/nitrogenconfigurationui.cpp @@ -135,6 +135,12 @@ namespace Nitrogen titleOutline->setWhatsThis(i18n( "When enabled, an additional frame is shown around the active window as well as its title")); + // draw separator + vboxLayout->addWidget( drawSeparator = new QCheckBox( i18n("Draw separator between title bar and active window contents"), basicWidget ) ); + drawSeparator->setObjectName(QString::fromUtf8("drawSeparator")); + drawSeparator->setWhatsThis(i18n( + "When enabled, this option makes an horizontal separator appear between the window title bar and the window contents.")); + // show stripes vboxLayout->addWidget( showStripes = new QCheckBox( i18n("Show stripes next to the title"), basicWidget) ); showStripes->setObjectName(QString::fromUtf8("showStripes")); @@ -142,7 +148,7 @@ namespace Nitrogen "When enabled, this option increases the visibility of the window titlebar by showing stripes")); showStripes->hide(); - + } @@ -199,12 +205,6 @@ namespace Nitrogen useOxygenShadows->setObjectName(QString::fromUtf8("useOxygenShadows")); useOxygenShadows->setWhatsThis(i18n( "When this option is enabled, oxygen signature blue glow is used for the active window shadow.")); - - // draw separator - vboxLayout->addWidget( drawSeparator = new QCheckBox( i18n("Draw separator between title bar and active window contents"), advancedWidget ) ); - drawSeparator->setObjectName(QString::fromUtf8("drawSeparator")); - drawSeparator->setWhatsThis(i18n( - "When enabled, this option makes an horizontal separator appear between the window title bar and the window contents.")); }