diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-11-07 03:38:48 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-11-07 03:52:57 +0100 |
commit | 5ca1fb18bbf9789a65eaf3113ee1ff65449ff086 (patch) | |
tree | 83885596d4b830ed5e6da2f2e36bc17048881fa4 /resources/qml/MessageView.qml | |
parent | Fix crash when clearing empty timeline (diff) | |
download | nheko-5ca1fb18bbf9789a65eaf3113ee1ff65449ff086.tar.xz |
Move away from using an event loop to access secrets
Fixes messages in room flickering and being stuck fixes #760 relates to #770 relates to #789
Diffstat (limited to 'resources/qml/MessageView.qml')
-rw-r--r-- | resources/qml/MessageView.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/MessageView.qml b/resources/qml/MessageView.qml index 7ed30112..b70335bb 100644 --- a/resources/qml/MessageView.qml +++ b/resources/qml/MessageView.qml @@ -363,7 +363,7 @@ ScrollView { anchors.horizontalCenter: parent ? parent.horizontalCenter : undefined width: chat.delegateMaxWidth - height: Math.max(section.active ? section.height + timelinerow.height : timelinerow.height, 10) + height: section.active ? section.height + timelinerow.height : timelinerow.height Rectangle { id: scrollHighlight @@ -420,7 +420,7 @@ ScrollView { property string day: wrapper.day property string previousMessageDay: wrapper.previousMessageDay property string userName: wrapper.userName - property var timestamp: wrapper.timestamp + property date timestamp: wrapper.timestamp z: 4 active: previousMessageUserId !== undefined && previousMessageUserId !== userId || previousMessageDay !== day |