im having huge trouble getting the 2nd row to line up to the left. the dirt settings frame i can move left with sticky="w" but the others in the row remain as they are. i new to python so it has to be something simple im missing.
thx for any help.
controls_frame = tk.Frame(root)
controls_frame.grid(row=0, column=0, padx=10, pady=10, sticky="ew")
stripe_frame = tk.LabelFrame(controls_frame, text="Stripe Settings", padx=10, pady=10)
stripe_frame.grid(row=0, column=0, padx=10, pady=10, sticky="n")
shape_frame = tk.LabelFrame(controls_frame, text="Shape Settings", padx=10, pady=10)
shape_frame.grid(row=0, column=1, padx=10, pady=10)
bg_frame = tk.LabelFrame(controls_frame, text="Background Settings", padx=10, pady=10)
bg_frame.grid(row=0, column=2, padx=10, pady=10, sticky="n")
dirt_frame = tk.LabelFrame(root, text="Dirt Settings", padx=0, pady=0)
dirt_frame.grid(row=1, column=0, padx=10, pady=0, sticky="w")
wear_frame = tk.LabelFrame(root, text="Wear Settings", padx=0, pady=0)
wear_frame.grid(row=1, column=1, padx=10, pady=0, sticky="ew")
run_frame = tk.LabelFrame(root, text="Run Insignia Script", padx=10, pady=10)
run_frame.grid(row=1, column=3, padx=10, pady=10, sticky="n")
create_mod_frame = tk.LabelFrame(root, text="Create Mod", padx=0, pady=0)
create_mod_frame.grid(row=1, column=2, padx=10, pady=0, sticky="n")
Attached Files
