From 37df79f7964795e03ffca10c4623cb9061aa3b9c Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Tue, 24 Nov 2020 19:06:31 +0100 Subject: Show userid in completer --- resources/qml/Completer.qml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'resources/qml') 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 + } + } } -- cgit 1.5.1