Skip to content

Commit

Permalink
Use heavy plus sign character for priority/exclude lists add button
Browse files Browse the repository at this point in the history
  • Loading branch information
DevilXD committed Jul 3, 2024
1 parent 17009d7 commit dc48860
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1600,7 +1600,7 @@ def __init__(self, manager: GUIManager, master: ttk.Widget):
self._priority_entry.grid(column=0, row=0, sticky="ew")
priority_frame.columnconfigure(0, weight=1)
ttk.Button(
priority_frame, text="+", command=self.priority_add, width=2, style="Large.TButton"
priority_frame, text="", command=self.priority_add, width=2, style="Large.TButton"
).grid(column=1, row=0)
self._priority_list = PaddedListbox(
priority_frame,
Expand Down Expand Up @@ -1643,7 +1643,7 @@ def __init__(self, manager: GUIManager, master: ttk.Widget):
)
self._exclude_entry.grid(column=0, row=0, sticky="ew")
ttk.Button(
exclude_frame, text="+", command=self.exclude_add, width=2, style="Large.TButton"
exclude_frame, text="", command=self.exclude_add, width=2, style="Large.TButton"
).grid(column=1, row=0)
self._exclude_list = PaddedListbox(
exclude_frame,
Expand Down Expand Up @@ -2013,7 +2013,7 @@ def __init__(self, twitch: Twitch):
style.configure("MS.TLabel", font=monospaced_font)
# button style with a larger font
large_font = default_font.copy()
large_font.config(size=12)
large_font.config(size=10)
style.configure("Large.TButton", font=large_font)
# label style that mimics links
link_font = default_font.copy()
Expand Down

0 comments on commit dc48860

Please sign in to comment.