From 831564cf4851d6f3fe5e1207ad6f16dca53cd788 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 14 Mar 2025 09:23:10 -0700 Subject: [PATCH] fix: prevent auto-scroll when highlighting playback timestamps --- aider/website/_includes/recording.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aider/website/_includes/recording.js b/aider/website/_includes/recording.js index 1db74cae6..3799a2d33 100644 --- a/aider/website/_includes/recording.js +++ b/aider/website/_includes/recording.js @@ -212,8 +212,7 @@ document.addEventListener('DOMContentLoaded', function() { if (listItem) { listItem.classList.add('active-marker'); - // Scroll the list item into view if needed - listItem.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); + // No longer scrolling into view to avoid shifting focus } } }