From de4997dd876a39e04ddff3fa79ca7eceb6fab5bf Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Thu, 29 Sep 2022 17:37:07 +0200 Subject: [PATCH] Forgot to remove log spam Forgot to remove log spam --- Basalt/main.lua | 3 --- 1 file changed, 3 deletions(-) diff --git a/Basalt/main.lua b/Basalt/main.lua index 3bda4b3..6547e1b 100644 --- a/Basalt/main.lua +++ b/Basalt/main.lua @@ -192,7 +192,6 @@ end local btn, dragX, dragY = nil, nil, nil local dragTimer = nil local function dragHandlerTimer() - log("Event registered") dragTimer = nil mainFrame:dragHandler(btn, dragX, dragY) activeFrame = mainFrame @@ -203,7 +202,6 @@ local function mouseDragEvent(b, x, y) if(dragThrottle<50)then dragHandlerTimer() else - log("Draggi"..(tostring(dragTimer)..(dragThrottle/1000))) if(dragTimer==nil)then dragTimer = os.startTimer(dragThrottle/1000) end @@ -315,7 +313,6 @@ basalt = { end, setMouseDragThrottle = function(amount) - log("Drag Throttle "..amount) if(amount<=0)then dragThrottle = 0 else