From c8fa40a2dffad4814bf96248bad0e60c1b2209e9 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Mon, 23 Nov 2020 05:08:17 +0100 Subject: Use a trie for filtering completions (not fuzzy yet) --- resources/qml/Completer.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'resources/qml') diff --git a/resources/qml/Completer.qml b/resources/qml/Completer.qml index 0557a2e7..dda5b896 100644 --- a/resources/qml/Completer.qml +++ b/resources/qml/Completer.qml @@ -55,7 +55,7 @@ Popup { model: completer delegate: Rectangle { - color: model.index == popup.currentIndex ? colors.window : colors.base + color: model.index == popup.currentIndex ? colors.window : colors.alternateBase height: chooser.childrenRect.height + 4 width: chooser.childrenRect.width + 4 @@ -141,7 +141,7 @@ Popup { } background: Rectangle { - color: colors.base + color: colors.alternateBase implicitHeight: popup.contentHeight implicitWidth: popup.contentWidth } -- cgit 1.5.1