From a78f9bd216b2fdb31268bb43d85e278423db0f44 Mon Sep 17 00:00:00 2001 From: Eveldee Date: Mon, 18 Mar 2019 23:08:38 +0100 Subject: [PATCH] Switch osu! and pong place --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index ffc8a4c..d3e91f2 100644 --- a/main.py +++ b/main.py @@ -56,10 +56,10 @@ def main(): global time, delta # Create Canvas - canvas_osu = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1) - canvas_osu.place(x = 2, y = 2) canvas_pong = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1) - canvas_pong.place(x = 404, y = 2) + canvas_pong.place(x = 2, y = 2) + canvas_osu = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1) + canvas_osu.place(x = 404, y = 2) canvas_space = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1) canvas_space.place(x = 2, y = 304) canvas_fall = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1)