From 332042d7d0f9f4bdf35b07f195fc3ef94c20e31f Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Sun, 14 Aug 2022 16:54:45 -0400 Subject: [PATCH] Increased button pressed display font size. --- .../Demo_Button_Simulated_With_Highlighting_Using_Bind.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DemoPrograms/Demo_Button_Simulated_With_Highlighting_Using_Bind.py b/DemoPrograms/Demo_Button_Simulated_With_Highlighting_Using_Bind.py index 26e71896..5835af7e 100644 --- a/DemoPrograms/Demo_Button_Simulated_With_Highlighting_Using_Bind.py +++ b/DemoPrograms/Demo_Button_Simulated_With_Highlighting_Using_Bind.py @@ -23,7 +23,7 @@ import PySimpleGUI as sg Copyright 2022 PySimpleGUI.org """ - +# sg.theme('dark red') def TextButton(text): """ @@ -47,7 +47,7 @@ def main(): # The window's layout layout = [[TextButton(text) for text in button_text], - [sg.Text(k='-STATUS-')], + [sg.Text(font='_ 14', k='-STATUS-')], [sg.Ok(), sg.Exit()]] window = sg.Window('Custom Mouseover Highlighting Buttons', layout, finalize=True)