mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Prevent freeze when left chatroom is opened
This commit is contained in:
parent
c56db0f429
commit
4ef65219ad
1 changed files with 1 additions and 2 deletions
|
|
@ -220,9 +220,8 @@ RowLayout {
|
|||
}
|
||||
ChatDroppableTextArea {
|
||||
id: messageSender
|
||||
visible: !mainItem.chat.core.isReadOnly
|
||||
Layout.fillWidth: true
|
||||
Layout.preferredHeight: height
|
||||
Layout.preferredHeight: mainItem.chat.core.isReadOnly ? 0 : height
|
||||
Component.onCompleted: {
|
||||
if (mainItem.chat) text = mainItem.chat.core.sendingText
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue