From 32eef18f506c3cf905a313b203418529a9c40240 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Wed, 3 Feb 2021 21:30:16 -0700 Subject: [PATCH] [plasmacomponents3/spinbox] Fix selected text color There's no such color as theme.selectedTextColor. --- src/declarativeimports/plasmacomponents3/SpinBox.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/declarativeimports/plasmacomponents3/SpinBox.qml b/src/declarativeimports/plasmacomponents3/SpinBox.qml index 212bfb706..4677c09c8 100644 --- a/src/declarativeimports/plasmacomponents3/SpinBox.qml +++ b/src/declarativeimports/plasmacomponents3/SpinBox.qml @@ -37,7 +37,7 @@ T.SpinBox { font: control.font color: theme.viewTextColor selectionColor: theme.highlightColor - selectedTextColor: theme.selectedTextColor + selectedTextColor: theme.highlightedTextColor horizontalAlignment: Qt.AlignHCenter verticalAlignment: Qt.AlignVCenter