From ed0fc260513d87d9cab91199df62441882f79a60 Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Tue, 21 Sep 2021 15:51:01 +0200 Subject: [PATCH] Fix unthemed label Since in dark mode it stays black and it disappears in the background. CURA-8421 --- resources/qml/ApplicationSwitcher/ApplicationButton.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/qml/ApplicationSwitcher/ApplicationButton.qml b/resources/qml/ApplicationSwitcher/ApplicationButton.qml index a6176f3153..e3bee3d5fc 100644 --- a/resources/qml/ApplicationSwitcher/ApplicationButton.qml +++ b/resources/qml/ApplicationSwitcher/ApplicationButton.qml @@ -95,6 +95,7 @@ Button verticalAlignment: Text.AlignVCenter wrapMode: Text.Wrap elide: Text.ElideRight + color: UM.Theme.getColor("primary_text") } } }