From e1c5d55684d33cfeca66558c2713cf5469ae1840 Mon Sep 17 00:00:00 2001 From: Eveldee Date: Wed, 27 Mar 2019 18:37:12 +0100 Subject: [PATCH] Fix games position --- main.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index a900c23..d21f179 100644 --- a/main.py +++ b/main.py @@ -11,7 +11,6 @@ win['bg'] = color.LEVEL_9 win.title('Quadraludi') win.geometry('806x606') win.resizable(False, False) -win.wm_attributes('-transparentcolor', color.TRANSPARENT) # Res image_center = ImageTk.PhotoImage(Image.open('res/logo/main.png')) @@ -70,10 +69,10 @@ def main(): 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) - canvas_fall.place(x = 404, y = 304) + canvas_fall.place(x = 2, y = 304) + canvas_space = tk.Canvas(win, width = 400, height = 300, bd = 0, highlightthickness = 0, relief = 'ridge', bg = color.LEVEL_1) + canvas_space.place(x = 404, y = 304) # Logo win.iconbitmap('res/logo/main.ico')