diff --git a/app/storage/sonicforge.db b/app/storage/sonicforge.db index ac70a80..fb4231a 100644 Binary files a/app/storage/sonicforge.db and b/app/storage/sonicforge.db differ diff --git a/app/templates/index.html b/app/templates/index.html index 46e4033..953a9af 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -673,7 +673,7 @@ setSelectedClipId(null); } - if (activeTool === 'pen') { + if (activeTool === 'pen' && !e.ctrlKey) { if (clickedClip) { e.preventDefault(); e.stopPropagation(); @@ -684,7 +684,7 @@ return; } - if (activeTool === 'razor') { + if (activeTool === 'razor' && !e.ctrlKey) { if (clickedClip) { e.preventDefault(); e.stopPropagation();