From 44a6990a4c32612c0c6affa7cc4beff85ec3670b Mon Sep 17 00:00:00 2001 From: justuser31 Date: Sat, 22 Apr 2023 15:39:48 +0300 Subject: [PATCH] Fix bar --- map.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/map.py b/map.py index b9baa67..da61ea0 100644 --- a/map.py +++ b/map.py @@ -12,8 +12,8 @@ canvas.pack() root.geometry("1024x800") root.tk.call('wm', 'iconphoto', root._w, tk.PhotoImage(file='map.png')) -ttext = tk.Canvas(root, width=80, height=20, bg="black") -ttext.place(x=950, y=0) +ttext = tk.Canvas(root, width=90, height=20, bg="black") +ttext.place(x=940, y=0) text = ttext.create_text(40, 10, text="X: 1, Y: 1", fill="white") while True: