summary refs log tree commit diff
path: root/resources/qml/TimelineView.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-08-29 19:24:44 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-08-29 19:24:44 +0200
commitded926cdf9b82bae12404651c74b14c1ca853f38 (patch)
tree684a40502d562b06e4df38ac1a3f461cfb35ed93 /resources/qml/TimelineView.qml
parentFix another leak when creating an animated image without an image (diff)
downloadnheko-ded926cdf9b82bae12404651c74b14c1ca853f38.tar.xz
Fix a few null warnings
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r--resources/qml/TimelineView.qml9
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" : ""