From 0d624e8a9b94d90d720d1f19719498407505c0cf Mon Sep 17 00:00:00 2001 From: "K1llM@n" Date: Sat, 3 Jun 2023 17:57:40 +0300 Subject: [PATCH] Fix frames size --- roop/ui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roop/ui.py b/roop/ui.py index 52d2e9f..d8891fb 100644 --- a/roop/ui.py +++ b/roop/ui.py @@ -263,12 +263,12 @@ def init( support_link.bind("", lambda e: webbrowser.open("https://github.com/sponsors/s0md3v")) left_frame = tk.Frame(window) - left_frame.place(x=60, y=100) + left_frame.place(x=60, y=100, width=180, height=180) face_label = tk.Label(left_frame) face_label.pack(fill='both', side='top', expand=True) right_frame = tk.Frame(window) - right_frame.place(x=360, y=100) + right_frame.place(x=360, y=100, width=180, height=180) target_label = tk.Label(right_frame) target_label.pack(fill='both', side='top', expand=True)