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

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 &&