From 577e9c88c35f75d6f97d1d5271529b46722620a9 Mon Sep 17 00:00:00 2001 From: Marc Culler Date: Tue, 24 Dec 2024 13:22:29 -0700 Subject: [PATCH] Increase labelframe font size. --- python/gui.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/python/gui.py b/python/gui.py index 8fbd7db6..29d34396 100644 --- a/python/gui.py +++ b/python/gui.py @@ -27,6 +27,11 @@ def __init__(self): # The windowBG, groupBG and subgroupBG colors can be used to match Tk objects to # Ttk containers. if sys.platform == 'darwin': + labelframe_font = Tk_.font.Font(name="TkSmallCaptionFont", + exists=True) + labelframe_font.configure(size=15) + self.ttk_style.configure('TLabelframe.Label', + font=labelframe_font) try: # check if our Tk supports the new semantic colors test = Tk_._default_root.winfo_rgb('systemWindowBackgroundColor1')