From 7dab7dfe6072bbeac71a932ed86e88d92de75397 Mon Sep 17 00:00:00 2001 From: anti-corporate Date: Tue, 16 Jun 2026 00:36:32 -0400 Subject: [PATCH] Change PASTE_OFFSET return value and update error message why does this exists at all? --- engine/src/Clipboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/Clipboard.js b/engine/src/Clipboard.js index d2d1b12ce..ef4933b55 100644 --- a/engine/src/Clipboard.js +++ b/engine/src/Clipboard.js @@ -27,7 +27,7 @@ Wick.Clipboard = class { static get PASTE_OFFSET () { // how many pixels should we shift objects over when we paste (canvas only) - return 20; + return 0; // idk } /** @@ -58,7 +58,7 @@ Wick.Clipboard = class { * @param {Wick.Base[]} objects - the objects to copy to the clipboard */ copyObjectsToClipboard (project, objects) { - if(!project || (!project instanceof Wick.Project)) console.error('copyObjectsToClipboard(): project is required'); + if(!project || (!project instanceof Wick.Project)) console.error('copyObjectsToClipboard(): not found project'); // Get the playhead position of the "first" frame in the list of objects var playheadCopyOffset = null;