From eb8de7ffa72a151026d833989612a8a232372f86 Mon Sep 17 00:00:00 2001 From: "Squishy (C6H12O6+NaCl+H2O)" <106439598+SweetSea-ButImNotSweet@users.noreply.github.com> Date: Sat, 25 May 2024 00:24:18 +0700 Subject: [PATCH] It should work imo --- scene/touch_config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/touch_config.lua b/scene/touch_config.lua index 5dcfe0c..aa3b9ab 100644 --- a/scene/touch_config.lua +++ b/scene/touch_config.lua @@ -217,7 +217,7 @@ end ---@param e SCENE_onInput function TouchConfigScene:onInputMove(e) - if (e.type == "mouse" and love.mouse.isDown(1)) or e.type == "touch" then + if e.type == "touch" or (e.type == "mouse" and love.mouse.isDown(1)) then if VCTRL.drag(e.dx, e.dy, e.id or 1) then hasChanged = true end end