From 036704e1610f20816884793c0dc1a9ae04ca2f6a Mon Sep 17 00:00:00 2001 From: Bharadwaj Raju Date: Tue, 11 May 2021 09:53:43 +0530 Subject: [PATCH] Fix text color in Plugin Settings Remove references to nonexistent "listItem" for getting color --- app/qml/PluginSettings.qml | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/qml/PluginSettings.qml b/app/qml/PluginSettings.qml index 0efab9a37..e98cc1501 100644 --- a/app/qml/PluginSettings.qml +++ b/app/qml/PluginSettings.qml @@ -41,14 +41,12 @@ Kirigami.ScrollablePage Label { Layout.fillWidth: true text: model.name - color: listItem.pressed ? listItem.activeTextColor : listItem.textColor elide: Text.ElideRight } Label { Layout.fillWidth: true text: model.description - color: listItem.pressed ? listItem.activeTextColor : listItem.textColor elide: Text.ElideRight font: Kirigami.Theme.smallFont opacity: 0.7