From 39d222126e65f6d8ab05b6f6a04594b1c76b2b1e Mon Sep 17 00:00:00 2001 From: 3dtours Date: Sat, 18 Jul 2026 21:48:43 +0700 Subject: [PATCH] =?UTF-8?q?fix:=20l=E1=BB=97i=20alt-click=20drag=20nh?= =?UTF-8?q?=C3=A2n=20b=E1=BA=A3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/templates/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/templates/index.html b/app/templates/index.html index 7a25747..0fa7309 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -409,8 +409,8 @@ return; } - // Check for click drag clip (no Alt key required if select tool is in fallback alt-mode) - if (clickedClip && e.altKey) { + // Check for click drag clip (no Ctrl key required if select tool is in fallback ctrl-mode) + if (clickedClip && e.ctrlKey) { e.preventDefault(); e.stopPropagation(); if (onClipDragStart) { @@ -2789,7 +2789,7 @@