Merge pull request #5347 from PySimpleGUI/Dev-latest

Fixed the font and Expand X settings on the Editor settings section o…
This commit is contained in:
PySimpleGUI 2022-04-09 22:24:18 -04:00 committed by GitHub
commit 53b01e4009
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/python3 #!/usr/bin/python3
version = __version__ = "4.59.0.4 Released 5-Apr-2022" version = __version__ = "4.59.0.5 Released 5-Apr-2022"
_change_log = """ _change_log = """
Changelog since 4.59.0 released to PyPI on 5-Apr-2022 Changelog since 4.59.0 released to PyPI on 5-Apr-2022
@ -24,6 +24,8 @@ _change_log = """
The alignment is not perfect and the whole thing needs more work The alignment is not perfect and the whole thing needs more work
The keystrokes used to perform the cpature, the locatoin the file is stored and the filename are al in the PySimpleGUI global settings The keystrokes used to perform the cpature, the locatoin the file is stored and the filename are al in the PySimpleGUI global settings
The auto-numbering freature is not yet implemented. Only 1 file is used and is overwritten if exists The auto-numbering freature is not yet implemented. Only 1 file is used and is overwritten if exists
4.59.0.5
Fixed the font and sizing of the "Editor Settings" section
""" """
@ -23702,7 +23704,7 @@ def main_global_pysimplegui_settings():
[T('Use tags <editor> <file> <line> to specify the string')], [T('Use tags <editor> <file> <line> to specify the string')],
[T('that will be executed to edit python files using your editor')], [T('that will be executed to edit python files using your editor')],
[T('Edit Format String (hover for tooltip)', tooltip=tooltip), [T('Edit Format String (hover for tooltip)', tooltip=tooltip),
In(settings.get('-editor format string-', '<editor> <file>'), k='-EDITOR FORMAT-', tooltip=tooltip)]]) In(settings.get('-editor format string-', '<editor> <file>'), k='-EDITOR FORMAT-', tooltip=tooltip)]], font='_ 16', expand_x=True)
layout += [[editor_frame]] layout += [[editor_frame]]