diff options
author | Malte E <malte.e@mailbox.org> | 2022-02-04 21:20:25 +0100 |
---|---|---|
committer | Malte E <malte.e@mailbox.org> | 2022-02-04 21:20:25 +0100 |
commit | 3c8c02e80265e9ac285756c803b938c016b1597c (patch) | |
tree | 63e3eab36741903dd3d806511d4b9b2887ee5419 /resources/qml/delegates/MessageDelegate.qml | |
parent | prepare code for message bubbles and dynamic message layout (diff) | |
download | nheko-3c8c02e80265e9ac285756c803b938c016b1597c.tar.xz |
Revert removal of width and height in TextMessage and implicitWidth in MessageDelegate
Diffstat (limited to 'resources/qml/delegates/MessageDelegate.qml')
-rw-r--r-- | resources/qml/delegates/MessageDelegate.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/delegates/MessageDelegate.qml b/resources/qml/delegates/MessageDelegate.qml index ad6e7580..8c74bfe8 100644 --- a/resources/qml/delegates/MessageDelegate.qml +++ b/resources/qml/delegates/MessageDelegate.qml @@ -13,7 +13,7 @@ Item { required property bool isReply property alias child: chooser.child -// property real implicitWidth: (chooser.child && chooser.child.implicitWidth) ? chooser.child.implicitWidth : width + property real implicitWidth: (chooser.child && chooser.child.implicitWidth) ? chooser.child.implicitWidth : width required property double proportionalHeight required property int type required property string typeString |