diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-08-29 19:24:44 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-08-29 19:24:44 +0200 |
commit | ded926cdf9b82bae12404651c74b14c1ca853f38 (patch) | |
tree | 684a40502d562b06e4df38ac1a3f461cfb35ed93 /resources/qml/TimelineView.qml | |
parent | Fix another leak when creating an animated image without an image (diff) | |
download | nheko-ded926cdf9b82bae12404651c74b14c1ca853f38.tar.xz |
Fix a few null warnings
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r-- | resources/qml/TimelineView.qml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml index 5a8b5381..9bc4bef0 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml @@ -84,11 +84,10 @@ Item { target: timelineView } - - MessageView { - implicitHeight: msgView.height - typingIndicator.height - Layout.fillWidth: true - } + MessageView { + implicitHeight: msgView.height - typingIndicator.height + Layout.fillWidth: true + } Loader { source: CallManager.isOnCall && CallManager.callType != CallType.VOICE ? "voip/VideoCall.qml" : "" |