Fixed small typo

This commit is contained in:
(Tim) Efthimis Kritikos 2025-05-29 00:34:40 +01:00
parent b7d19123fe
commit e9c8131e9d

View File

@ -79,7 +79,7 @@ def main():
img = Image.open(image_path) img = Image.open(image_path)
img.thumbnail((400, 400)) # Resize for display img.thumbnail((400, 400)) # Resize for display
photo = ImageTk.PhotoImage(img) photo = ImageTk.PhotoImage(img)
img_label = tk.Label(root, image=photo, bg=background_color, x) img_label = tk.Label(root, image=photo, bg=background_color)
#Start/end timestamp fields #Start/end timestamp fields
timestamp=Frame(root) timestamp=Frame(root)