Increased button pressed display font size.
This commit is contained in:
parent
7510d18518
commit
332042d7d0
|
@ -23,7 +23,7 @@ import PySimpleGUI as sg
|
||||||
Copyright 2022 PySimpleGUI.org
|
Copyright 2022 PySimpleGUI.org
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# sg.theme('dark red')
|
||||||
|
|
||||||
def TextButton(text):
|
def TextButton(text):
|
||||||
"""
|
"""
|
||||||
|
@ -47,7 +47,7 @@ def main():
|
||||||
|
|
||||||
# The window's layout
|
# The window's layout
|
||||||
layout = [[TextButton(text) for text in button_text],
|
layout = [[TextButton(text) for text in button_text],
|
||||||
[sg.Text(k='-STATUS-')],
|
[sg.Text(font='_ 14', k='-STATUS-')],
|
||||||
[sg.Ok(), sg.Exit()]]
|
[sg.Ok(), sg.Exit()]]
|
||||||
|
|
||||||
window = sg.Window('Custom Mouseover Highlighting Buttons', layout, finalize=True)
|
window = sg.Window('Custom Mouseover Highlighting Buttons', layout, finalize=True)
|
||||||
|
|
Loading…
Reference in New Issue