summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-11-23 05:08:17 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2020-11-25 19:05:12 +0100
commitc8fa40a2dffad4814bf96248bad0e60c1b2209e9 (patch)
tree5c1c2fc12f39aadb006a8bb3e7617e4821ebe255 /resources/qml
parentRemove old Textinput (diff)
downloadnheko-c8fa40a2dffad4814bf96248bad0e60c1b2209e9.tar.xz
Use a trie for filtering completions (not fuzzy yet)
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/Completer.qml4
1 files changed, 2 insertions, 2 deletions
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 }