From 5ca57bf51813db1d3c0c0fbf8396257a3ce38148 Mon Sep 17 00:00:00 2001 From: Hugo Pereira Da Costa Date: Wed, 29 Dec 2010 10:25:55 +0000 Subject: [PATCH] Made Center (full width) the default title alignment. This way, window title is centered with respect to background radial gradient. svn path=/trunk/KDE/kdebase/workspace/; revision=1210059 --- clients/oxygen/oxygenconfiguration.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clients/oxygen/oxygenconfiguration.cpp b/clients/oxygen/oxygenconfiguration.cpp index 91ea71b7e1..97369e3f0d 100644 --- a/clients/oxygen/oxygenconfiguration.cpp +++ b/clients/oxygen/oxygenconfiguration.cpp @@ -36,7 +36,7 @@ namespace Oxygen //__________________________________________________ Configuration::Configuration( void ): titleAlignment_( Qt::AlignHCenter ), - centerTitleOnFullWidth_( false ), + centerTitleOnFullWidth_( true ), buttonSize_( ButtonDefault ), frameBorder_( BorderTiny ), blendColor_( BlendFromStyle ), @@ -370,6 +370,7 @@ namespace Oxygen return titleAlignment() == other.titleAlignment() && + centerTitleOnFullWidth() == other.centerTitleOnFullWidth() && buttonSize() == other.buttonSize() && frameBorder() == other.frameBorder() && blendColor() == other.blendColor() &&