diff --git a/PyFit.py b/PyFit.py index b5c70de..b6a0db5 100644 --- a/PyFit.py +++ b/PyFit.py @@ -572,8 +572,8 @@ def main(): weight_label = ctk.CTkLabel(master=viewer_frame, text="Weight (kg)") weight_label.place(relx=0.85, rely=0.0325, anchor=ctk.CENTER) -exercise_text = ctk.CTkLabel(master=viewer_frame, width=250, height=200, text="", bg_color=("#e2e2e2", "#333333"), justify="left", anchor="n") -exercise_text.place(relx=0.15, rely=0.075, anchor=ctk.N) +exercise_text = ctk.CTkLabel(master=viewer_frame, width=200, height=200, text="", bg_color=("#e2e2e2", "#333333"), justify="left", anchor="w") +exercise_text.place(relx=0.25, rely=0.075, anchor=ctk.N) reps_text = ctk.CTkLabel(master=viewer_frame, width=80, text="", bg_color=("#e2e2e2", "#333333"), justify="center") reps_text.place(relx=0.45, rely=0.075, anchor=ctk.N)