Fix separator

This commit is contained in:
Samuel Sloniker 2024-07-30 10:12:03 -07:00
parent 1c40a5e418
commit f44e32a98a

View File

@ -34,7 +34,7 @@ def run():
window, text="Phone running Navpoint Mobile", command=_mobile_clicked window, text="Phone running Navpoint Mobile", command=_mobile_clicked
) )
mobile_button.pack() mobile_button.pack()
ttk.Separator(window, orient="horizontal").pack() ttk.Separator(window, orient="horizontal").pack(fill="x", pady=3)
ttk.Label(window, text="Navpoint is free and open-source.").pack() ttk.Label(window, text="Navpoint is free and open-source.").pack()
about_button = ttk.Button( about_button = ttk.Button(
window, text="About Navpoint", command=navpoint.about.about window, text="About Navpoint", command=navpoint.about.about