From 99f8c850650a075d8715162b11aa21a71fcc44f0 Mon Sep 17 00:00:00 2001 From: Konstantinos Karmas Date: Tue, 24 Aug 2021 13:33:05 +0200 Subject: [PATCH] Style the "no plugin/material installed" texts in the installed tab The default black text color was invisible in the dark theme. --- plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml b/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml index 48620d5def..fa7bd24c9d 100644 --- a/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml +++ b/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml @@ -71,6 +71,7 @@ ScrollView padding: UM.Theme.getSize("default_margin").width text: catalog.i18nc("@info", "No plugin has been installed.") font: UM.Theme.getFont("medium") + color: UM.Theme.getColor("lining") renderType: Text.NativeRendering } } @@ -123,6 +124,7 @@ ScrollView visible: toolbox.materialsInstalledModel.count < 1 padding: UM.Theme.getSize("default_margin").width text: catalog.i18nc("@info", "No material has been installed.") + color: UM.Theme.getColor("lining") font: UM.Theme.getFont("medium") renderType: Text.NativeRendering }