Merge pull request #71 from Harshitshukla0208/fix/ai-solution-67-1750807491754

fix(issue): Address issue #67 - [BUG] buttons jitter left and right
This commit is contained in:
iza 2025-06-25 08:02:04 +03:00 committed by GitHub
commit 402b004ef3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ export function Timeline() {
const clipLeft = clip.startTime * 50 * zoomLevel;
const clipTop = trackIdx * 60;
const clipBottom = clipTop + 60;
const clipRight = clipLeft + clipWidth;
const clipRight = clipLeft + 60; // Set a fixed width for time display
if (
bx1 < clipRight &&
bx2 > clipLeft &&