diff --git a/plugins/kdecorations/aurorae/themes/plastik/package/contents/config/main.xml b/plugins/kdecorations/aurorae/themes/plastik/package/contents/config/main.xml --- a/plugins/kdecorations/aurorae/themes/plastik/package/contents/config/main.xml +++ b/plugins/kdecorations/aurorae/themes/plastik/package/contents/config/main.xml @@ -18,9 +18,6 @@ true - - true - true diff --git a/plugins/kdecorations/aurorae/themes/plastik/package/contents/ui/config.ui b/plugins/kdecorations/aurorae/themes/plastik/package/contents/ui/config.ui --- a/plugins/kdecorations/aurorae/themes/plastik/package/contents/ui/config.ui +++ b/plugins/kdecorations/aurorae/themes/plastik/package/contents/ui/config.ui @@ -60,16 +60,6 @@ - - - - Check this option if you want the titlebar text to have a 3D look with a shadow behind it. - - - Use shadowed &text - - - @@ -92,7 +82,6 @@ kcfg_animateButtons - kcfg_titleShadow diff --git a/plugins/kdecorations/aurorae/themes/plastik/package/contents/ui/main.qml b/plugins/kdecorations/aurorae/themes/plastik/package/contents/ui/main.qml --- a/plugins/kdecorations/aurorae/themes/plastik/package/contents/ui/main.qml +++ b/plugins/kdecorations/aurorae/themes/plastik/package/contents/ui/main.qml @@ -76,7 +76,6 @@ root.titleAlignment = Text.AlignLeft; } root.animateButtons = decoration.readConfig("animateButtons", true); - root.titleShadow = decoration.readConfig("titleShadow", true); if (decoration.animationsSupported) { root.animationDuration = 150; root.animateButtons = false; @@ -96,7 +95,6 @@ // set by readConfig after Component completed, ensures that buttons do not flicker property int animationDuration: 0 property bool animateButtons: true - property bool titleShadow: true Behavior on titleBarColor { ColorAnimation { duration: root.animationDuration @@ -276,8 +274,6 @@ } text: decoration.client.caption font: options.titleFont - style: root.titleShadow ? Text.Raised : Text.Normal - styleColor: colorHelper.shade(color, ColorHelper.ShadowShade) elide: Text.ElideMiddle renderType: Text.NativeRendering }