From 082f4f48ec1a2ca9e48a49df7b21510e5cd507a7 Mon Sep 17 00:00:00 2001 From: "(Tim) Efthimis Kritikos" Date: Thu, 29 May 2025 00:48:20 +0100 Subject: [PATCH] Added a border around the image --- metadata_writer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata_writer.py b/metadata_writer.py index ba2ed89..c164e2c 100755 --- a/metadata_writer.py +++ b/metadata_writer.py @@ -79,7 +79,7 @@ def main(): img = Image.open(image_path) img.thumbnail((400, 400)) # Resize for display photo = ImageTk.PhotoImage(img) - img_label = tk.Label(root, image=photo, bg=background_color) + img_label = tk.Label(root, image=photo, bg=background_color, borderwidth=10) #Start/end timestamp fields timestamp=Frame(root)