From 098273e480d3a744659aa32958460eab6f0aeeb5 Mon Sep 17 00:00:00 2001 From: erinn Date: Tue, 5 Feb 2019 12:22:33 -0800 Subject: [PATCH] ok --- qml/panes/GroupSettingsPane.qml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/qml/panes/GroupSettingsPane.qml b/qml/panes/GroupSettingsPane.qml index 98129dc..9aa8f27 100644 --- a/qml/panes/GroupSettingsPane.qml +++ b/qml/panes/GroupSettingsPane.qml @@ -77,7 +77,15 @@ ColumnLayout { // groupSettingsPane model: ["erinn", "erinn (open privacy)", "supergirl", "someone else..."] onCurrentTextChanged: { - console.log(cbInvite.text) + console.log(cbInvite.currentText) + } + } + + SimpleButton { + text: "Invite" + + onClicked: { + console.log("inviting " + cbInvite.currentText) } }