mirror of
https://github.com/LDDestroier/CC/
synced 2025-04-06 10:46:56 +00:00
Fixed accidental lines when color picking
Also fixed it when, while using the fill tool, it'll save to the undo buffer mid-fill.
This commit is contained in:
parent
f87ee38392
commit
3e27651a94
9
pain.lua
9
pain.lua
@ -1882,7 +1882,6 @@ local fillTool = function(_frame,cx,cy,dot,isDeleting) -- "_frame" is the frame
|
||||
end
|
||||
end
|
||||
paintEncoded = clearAllRedundant(paintEncoded)
|
||||
saveToUndoBuffer()
|
||||
end
|
||||
|
||||
local boxCharSelector = function()
|
||||
@ -3026,7 +3025,7 @@ local getInput = function() --gotta catch them all
|
||||
if res == "exit" then break end
|
||||
doRender = true
|
||||
end
|
||||
elseif (evt[1] == "mouse_up") and (not viewing) then
|
||||
elseif (evt[1] == "mouse_up") and (not viewing) and (not isCurrentlyFilling) then
|
||||
origx,origy = 0,0
|
||||
local button = evt[2]
|
||||
miceDown[button] = false
|
||||
@ -3254,9 +3253,9 @@ local getInput = function() --gotta catch them all
|
||||
x = 2*x
|
||||
y = 3*y
|
||||
end
|
||||
os.queueEvent("filltool_async", frame, x, y, paint, mevt[2] == 2)
|
||||
miceDown = {}
|
||||
keysDown = {}
|
||||
os.queueEvent("filltool_async", frame, x, y, paint, mevt[2] == 2)
|
||||
end
|
||||
doRender = true
|
||||
changedImage = true
|
||||
@ -3290,8 +3289,7 @@ local getInput = function() --gotta catch them all
|
||||
break
|
||||
end
|
||||
end
|
||||
miceDown = {}
|
||||
keysDown = {}
|
||||
resetInputState()
|
||||
end
|
||||
doRender = true
|
||||
isDragging = false
|
||||
@ -3445,6 +3443,7 @@ runPainEditor = function(...) --needs to be cleaned up
|
||||
isCurrentlyFilling = true
|
||||
renderBottomBar("Filling area...")
|
||||
fillTool(frameNo, x, y, dot, isDeleting)
|
||||
saveToUndoBuffer()
|
||||
isCurrentlyFilling = false
|
||||
reRenderPAIN(doRenderBar == 0)
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user