From e64b6033f3b70109ca4b2932dca5b7e0c911b2d0 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 17 Jan 2026 13:23:21 -0500 Subject: [PATCH] Cleanup few remaining atYEnd usages in TimelineView These were either mistakes or rebase errors, but we should be using closeToYEnd here. (cherry picked from commit 3b8930c2bca5fd48edefc3ed3657607c0283161e) --- src/timeline/TimelineView.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/timeline/TimelineView.qml b/src/timeline/TimelineView.qml index 1c46cd145..42eab5448 100644 --- a/src/timeline/TimelineView.qml +++ b/src/timeline/TimelineView.qml @@ -114,7 +114,7 @@ QQC2.ScrollView { */ function allUnreadVisible() { let readMarkerRow = model.readMarkerIndex?.row ?? -1; - if (readMarkerRow >= 0 && readMarkerRow < oldestVisibleIndex() && atYEnd) { + if (readMarkerRow >= 0 && readMarkerRow < oldestVisibleIndex() && closeToYEnd) { return true; } return false; @@ -199,7 +199,7 @@ QQC2.ScrollView { } } - onAtYEndChanged: { + onCloseToYEndChanged: { // Don't care about this until the view has settled first. if (!_private.viewHasSettled) { return;