Hide new message bar in channels
This commit is contained in:
parent
138db9e78e
commit
a6768bc9dd
1 changed files with 2 additions and 1 deletions
|
@ -252,7 +252,7 @@ Page {
|
|||
Item {
|
||||
id: chatViewItem
|
||||
width: parent.width
|
||||
height: parent.height - ( 2 * Theme.paddingMedium ) - headerRow.height - newMessageColumn.height
|
||||
height: parent.height - Theme.paddingMedium - headerRow.height - ( chatPage.isChannel ? 0 : ( newMessageColumn.height + Theme.paddingMedium ) )
|
||||
|
||||
Timer {
|
||||
id: chatViewLoadingTimer
|
||||
|
@ -552,6 +552,7 @@ Page {
|
|||
spacing: Theme.paddingMedium
|
||||
width: parent.width - ( 2 * Theme.horizontalPageMargin )
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
visible: !chatPage.isChannel
|
||||
|
||||
property string replyToMessageId: "0";
|
||||
|
||||
|
|
Loading…
Reference in a new issue