Skip to content

Commit

Permalink
Fix spacing in Covers dialog by making column2 stretchy.
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Jan 12, 2025
1 parent 0c694c0 commit 5a415eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ def __init__(self, parent, manifold):
text='Choose covering spaces to browse:')
msg.grid(row=0, column=0, columnspan=3, pady=10)
degree_frame = ttk.Frame(top_frame)
degree_frame.grid_columnconfigure(1, weight=1)
degree_frame.grid_columnconfigure(2, weight=1)
self.degree_var = degree_var = Tk_.StringVar()
ttk.Label(degree_frame, text='Degree: ').grid(
row=0, column=0, sticky=Tk_.E)
Expand Down

0 comments on commit 5a415eb

Please sign in to comment.