diff --git a/abstract_client.cpp b/abstract_client.cpp
index c37f958128..c2c865a476 100644
--- a/abstract_client.cpp
+++ b/abstract_client.cpp
@@ -604,6 +604,7 @@ void AbstractClient::minimize(bool avoid_animation)
updateWindowRules(Rules::Minimize);
FocusChain::self()->update(this, FocusChain::MakeFirstMinimized);
// TODO: merge signal with s_minimized
+ addWorkspaceRepaint(visibleRect());
emit clientMinimized(this, !avoid_animation);
emit minimizedChanged();
}
diff --git a/effects/eyeonscreen/package/metadata.desktop b/effects/eyeonscreen/package/metadata.desktop
index 4de245e6eb..41c016bbf9 100644
--- a/effects/eyeonscreen/package/metadata.desktop
+++ b/effects/eyeonscreen/package/metadata.desktop
@@ -15,6 +15,7 @@ Name[fr]=Jeter un oeil sur le bureau
Name[gl]=Ollo na pantalla
Name[he]=עין על המסך
Name[hu]=Ide figyelj!
+Name[ia]=eye On Screen
Name[id]=mata Di Layar
Name[it]=eye On Screen
Name[ja]=eye On Screen
diff --git a/effects/frozenapp/package/metadata.desktop b/effects/frozenapp/package/metadata.desktop
index bcbf41e0d3..81b5864ab7 100644
--- a/effects/frozenapp/package/metadata.desktop
+++ b/effects/frozenapp/package/metadata.desktop
@@ -14,6 +14,7 @@ Name[fr]=Désature les applications qui ne répondent pas
Name[gl]=Reducir a saturación das aplicacións que non responden
Name[he]=מחשיך יישומים שאינם מגיבים
Name[hu]=Nem válaszoló alkalmazások színtelenítése
+Name[ia]=Desatura applicationes non responsive
Name[id]=Desaturate-kan Aplikasi Tidak Responsif
Name[it]=Desatura le applicazioni che non rispondono
Name[ko]=응답 없는 프로그램을 무채색으로 전환
@@ -52,6 +53,7 @@ Comment[fr]=Désature les fenêtres des applications qui ne répondent pas (gel
Comment[gl]=Reducir a saturación das xanelas de aplicacións que non responden (conxeladas)
Comment[he]=מחשיך חלונות של יישומים שאינם מגיבים (תקועים)
Comment[hu]=Színteleníti a nem válaszoló, lefagyott alkalmazások ablakait
+Comment[ia]=Destura fenestras de applicationes non responsive (congelate)
Comment[id]=Desaturate-kan window pada aplikasi yang tidak responsif (beku)
Comment[it]=Desatura le finestre delle applicazione che non rispondono (bloccate)
Comment[ko]=응답 없는 프로그램 창을 무채색으로 전환
diff --git a/plugins/kdecorations/aurorae/themes/plastik/package/contents/config/main.xml b/plugins/kdecorations/aurorae/themes/plastik/package/contents/config/main.xml
index 99f1126561..2054553b5e 100644
--- 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
index b2670db3d1..8052111599 100644
--- 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
index 3bbc2f830f..0b1a52e613 100644
--- 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 @@ Decoration {
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 @@ Decoration {
// 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 @@ Decoration {
}
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
}