From b3345329fcd08f16007f7e668418c6e167704839 Mon Sep 17 00:00:00 2001 From: Eveldee Date: Thu, 9 May 2019 19:36:48 +0200 Subject: [PATCH] Fix osu not clearing circle on end --- game/osu.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/game/osu.py b/game/osu.py index 495c65c..6806474 100644 --- a/game/osu.py +++ b/game/osu.py @@ -52,9 +52,10 @@ SECONDARY_COLOR = color.GREEN # Main def main(c: tk.Canvas): - global canvas + global canvas, circle # Ini + circle = None canvas = c c.bind('', motion)