From 6c47594bc3c2db0d306cdcf117dc47a059bd22dd Mon Sep 17 00:00:00 2001 From: Srevin Saju Date: Sat, 1 May 2021 17:20:44 +0300 Subject: [PATCH] feat: include parameter along with help message in the completion dialog --- imports/NeoChat/Component/ChatBox/CompletionMenu.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/NeoChat/Component/ChatBox/CompletionMenu.qml b/imports/NeoChat/Component/ChatBox/CompletionMenu.qml index aa7b40bb9..2ed761504 100644 --- a/imports/NeoChat/Component/ChatBox/CompletionMenu.qml +++ b/imports/NeoChat/Component/ChatBox/CompletionMenu.qml @@ -124,8 +124,8 @@ Popup { Kirigami.BasicListItem { id: commandItem width: ListView.view.width ?? implicitWidth + text: "" + modelData.parameter.replace("<", "<").replace(">", ">") + " " + modelData.help property string displayName: modelData.command - text: modelData.help leading: Label { id: commandLabel