Fix osu not clearing circle on end

This commit is contained in:
2019-05-09 19:36:48 +02:00
parent 25e217270b
commit b3345329fc

View File

@@ -52,9 +52,10 @@ SECONDARY_COLOR = color.GREEN
# Main # Main
def main(c: tk.Canvas): def main(c: tk.Canvas):
global canvas global canvas, circle
# Ini # Ini
circle = None
canvas = c canvas = c
c.bind('<Motion>', motion) c.bind('<Motion>', motion)