use a bigger size font for alert button text to see the scaling effect more easily

This commit is contained in:
Huy Pham 2020-03-02 09:17:35 -08:00
parent 9535d40b70
commit a7fa0bf6d3

View file

@ -182,21 +182,21 @@ def theme_change(event: tk.Event):
background="green", background="green",
padding=0, padding=0,
relief=tk.NONE, relief=tk.NONE,
font="TkSmallCaptionFont", font="TkDefaultFont",
) )
style.configure( style.configure(
Styles.yellow_alert, Styles.yellow_alert,
background="yellow", background="yellow",
padding=0, padding=0,
relief=tk.NONE, relief=tk.NONE,
font="TkSmallCaptionFont", font="TkDefaultFont",
) )
style.configure( style.configure(
Styles.red_alert, Styles.red_alert,
background="red", background="red",
padding=0, padding=0,
relief=tk.NONE, relief=tk.NONE,
font="TkSmallCaptionFont", font="TkDefaultFont",
) )