summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2020-07-08 02:02:48 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2020-07-08 02:02:48 +0200
commitfe12e63c7c406c2e1b25bf580f2bc73f0cefdb21 (patch)
tree765025d13484a1ef1ff637d678fe73ff1809a5c1 /resources/qml
parentAdd relations and order without hidden events to db (diff)
downloadnheko-fe12e63c7c406c2e1b25bf580f2bc73f0cefdb21.tar.xz
Fix parent undefined warning
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/TimelineView.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml

index 5494c1ba..f81f5986 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml
@@ -181,7 +181,7 @@ Page { id: wrapper property Item section - anchors.horizontalCenter: parent.horizontalCenter + anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined width: chat.delegateMaxWidth height: section ? section.height + timelinerow.height : timelinerow.height color: "transparent"