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