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)