Remove no longer existed property

This commit is contained in:
Wang Zichong
2022-12-19 11:48:08 +08:00
parent c46bfe05c1
commit de6f93b200
2 changed files with 0 additions and 8 deletions

View File

@@ -16,7 +16,6 @@ QQC2.ToolBar {
property alias textField: inputField
property alias cursorPosition: inputField.cursorPosition
signal closeAllTriggered()
signal inputFieldForceActiveFocusTriggered()
signal messageSent()

View File

@@ -87,9 +87,7 @@ ColumnLayout {
Layout.fillWidth: true
onCloseAllTriggered: closeAll()
onMessageSent: {
closeAll()
chatBox.messageSent();
}
@@ -111,9 +109,4 @@ ColumnLayout {
function focusInputField() {
chatBar.inputFieldForceActiveFocusTriggered()
}
function closeAll() {
// TODO clear();
chatBar.emojiPaneOpened = false;
}
}