Merge pull request #252 from santhoshmanikandan/hiding-send-new-message-button
Implements Remove send new message button when "Send message by enter" is chosen
This commit is contained in:
commit
d10b6dc227
1 changed files with 2 additions and 1 deletions
|
@ -1411,7 +1411,7 @@ Page {
|
|||
|
||||
TextArea {
|
||||
id: newMessageTextField
|
||||
width: parent.width - attachmentIconButton.width - newMessageSendButton.width
|
||||
width: parent.width - attachmentIconButton.width - (appSettings.sendByEnter ? 0: newMessageSendButton.width)
|
||||
height: Math.min(chatContainer.height / 3, implicitHeight)
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
font.pixelSize: Theme.fontSizeSmall
|
||||
|
@ -1457,6 +1457,7 @@ Page {
|
|||
icon.source: "image://theme/icon-m-chat"
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.bottomMargin: Theme.paddingSmall
|
||||
visible: !appSettings.sendByEnter
|
||||
enabled: false
|
||||
onClicked: {
|
||||
sendMessage();
|
||||
|
|
Loading…
Reference in a new issue