From 8eec3c810ed952db4648c7666a375dcef88f6dd3 Mon Sep 17 00:00:00 2001 From: Timon Date: Thu, 19 Feb 2026 21:21:03 +0100 Subject: [PATCH] fix(web): single select scroll behavior (#26358) refactor(timeline): remove single select scroll behavior --- web/src/lib/components/timeline/Timeline.svelte | 5 ----- 1 file changed, 5 deletions(-) diff --git a/web/src/lib/components/timeline/Timeline.svelte b/web/src/lib/components/timeline/Timeline.svelte index 9c07bff828..04f833e87a 100644 --- a/web/src/lib/components/timeline/Timeline.svelte +++ b/web/src/lib/components/timeline/Timeline.svelte @@ -419,11 +419,6 @@ } onSelect(asset); - if (singleSelect) { - timelineManager.scrollTo(0); - return; - } - const rangeSelection = assetInteraction.assetSelectionCandidates.length > 0; const deselect = assetInteraction.hasSelectedAsset(asset.id);