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) } }