summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-11-24 19:06:31 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2020-11-25 19:05:12 +0100
commit37df79f7964795e03ffca10c4623cb9061aa3b9c (patch)
tree50b35c3ab5d018564b33e76aba2bd5c89abc77b6 /resources/qml
parentLinkify username completion (diff)
downloadnheko-37df79f7964795e03ffca10c4623cb9061aa3b9c.tar.xz
Show userid in completer
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/Completer.qml5
1 files changed, 5 insertions, 0 deletions
diff --git a/resources/qml/Completer.qml b/resources/qml/Completer.qml

index 647e4d85..9703da64 100644 --- a/resources/qml/Completer.qml +++ b/resources/qml/Completer.qml
@@ -111,6 +111,11 @@ Popup { color: model.index == popup.currentIndex ? colors.highlightedText : colors.text } + Label { + text: "(" + model.userid + ")" + color: model.index == popup.currentIndex ? colors.highlightedText : colors.buttonText + } + } }