From 75e70903f1e4582f44c3fe002e6ebec5e6ebd662 Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Wed, 24 May 2023 06:47:34 +0200 Subject: [PATCH] Fixing coloration in dark theme of autocomplete categories. --- .../ad5001/LogarithmPlotter/Setting/AutocompletionCategory.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/AutocompletionCategory.qml b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/AutocompletionCategory.qml index df2f9f3..d5cc9af 100644 --- a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/AutocompletionCategory.qml +++ b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/Setting/AutocompletionCategory.qml @@ -84,11 +84,12 @@ ListView { Text { leftPadding: 5 text: listFiltered.category + color: sysPalette.windowText } Rectangle { height: 1 - color: 'black' + color: 'gray' width: parent.width } }