Skip to content

Commit 16c9afa

Browse files
committed
Adjust some visual spacing in the GUI
1 parent baf01a4 commit 16c9afa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

HDR-Multi-Tool-Gui.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,13 +325,13 @@ def write_path_to_ffmpeg(): # Writes path to ffmpeg to the config.ini file
325325
info_frame.columnconfigure(0, weight=1)
326326
link_input_label = Label(info_frame, text='Please Open a Dolby Vision or HDR10+ compatible file', background="#434547",
327327
foreground="white", height=1, font=("Helvetica", 10))
328-
link_input_label.grid(row=1, column=0, columnspan=5, padx=10, pady=5, sticky=W + E + N)
328+
link_input_label.grid(row=1, column=0, columnspan=5, padx=10, pady=2, sticky=W + E + N)
329329

330330
# --------------------------------------------------------------------------------------------- Info Frame
331331

332332
# Output Frame -------------------------------------------------------------------------------------------
333333
output_frame = LabelFrame(root, text=' Output ')
334-
output_frame.grid(row=3, column=0, columnspan=5, sticky=E + W, padx=20, pady=(0, 0))
334+
output_frame.grid(row=3, column=0, columnspan=5, sticky=E + W, padx=20, pady=(5, 0))
335335
output_frame.configure(fg="white", bg="#434547", bd=3)
336336

337337
output_frame.rowconfigure(0, weight=1)
@@ -343,7 +343,7 @@ def write_path_to_ffmpeg(): # Writes path to ffmpeg to the config.ini file
343343

344344
# Tabs ----------------------------------------------------------------------------------------------------------------
345345
hdr_tool_tabs = ttk.Notebook(root)
346-
hdr_tool_tabs.grid(row=2, column=0, columnspan=4, sticky=E + W + N + S, padx=10, pady=(0, 0))
346+
hdr_tool_tabs.grid(row=2, column=0, columnspan=4, sticky=E + W + N + S, padx=16, pady=(5, 0))
347347
hdr_frame = Frame(hdr_tool_tabs, background="#434547")
348348
dolby_frame = Frame(hdr_tool_tabs, background="#434547")
349349
hdr_tool_tabs.add(hdr_frame, text=' HDR10+ ')

0 commit comments

Comments
 (0)