Commit 3131fa18 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(Chat/OutgoingMessage): display correctly the received icon

parent 3e48f6b2
...@@ -4,18 +4,23 @@ import QtQuick.Layouts 1.3 ...@@ -4,18 +4,23 @@ import QtQuick.Layouts 1.3
import Common 1.0 import Common 1.0
import Linphone 1.0 import Linphone 1.0
Message { RowLayout {
backgroundColor: '#E4E4E4' implicitHeight: message.height
spacing: 10
Item { Message {
height: 30 id: message
width: 30
// TODO: Success and re-send icon. Layout.fillWidth: true
Icon { backgroundColor: '#E4E4E4'
anchors.centerIn: parent }
icon: 'valid'
iconSize: 16 // TODO: Success and re-send icon.
} Icon {
Layout.alignment: Qt.AlignTop
Layout.preferredHeight: 16
Layout.preferredWidth: 16
icon: 'valid'
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment