pothi.love/0017-on.mouse_release

16 lines
338 B
Plaintext
Raw Normal View History

on.mouse_release = function(x,y, mouse_button)
if Animating then return end
if Manifest_navigator.show then
reset_manifest_navigator()
end
if Pan then
Pan = nil
A()
elseif Move then
Move = nil
A()
elseif Cursor_node then
Cursor_node.show_cursor = true
edit.mouse_release(Cursor_node.editor, x,y, mouse_button)
end
end