This commit is contained in:
erinn 2019-02-05 12:22:33 -08:00
parent bac22f7551
commit 098273e480
1 changed files with 9 additions and 1 deletions

View File

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