Merge pull request #3100 from PySimpleGUI/Dev-latest
Release 4.24.0 - addition of new set_options parameter to control pat…
This commit is contained in:
commit
439c19fdf5
4 changed files with 39 additions and 9 deletions
|
@ -14495,7 +14495,8 @@ set_options(icon=None,
|
|||
tooltip_font=None,
|
||||
use_ttk_buttons=None,
|
||||
ttk_theme=None,
|
||||
suppress_error_popups=None)
|
||||
suppress_error_popups=None,
|
||||
enable_treeview_869_patch=None)
|
||||
```
|
||||
|
||||
Parameter Descriptions:
|
||||
|
@ -14594,7 +14595,8 @@ SetOptions(icon=None,
|
|||
tooltip_font=None,
|
||||
use_ttk_buttons=None,
|
||||
ttk_theme=None,
|
||||
suppress_error_popups=None)
|
||||
suppress_error_popups=None,
|
||||
enable_treeview_869_patch=None)
|
||||
```
|
||||
|
||||
Parameter Descriptions:
|
||||
|
|
|
@ -7314,6 +7314,14 @@ popup extensions
|
|||
* a few new built-in icons
|
||||
|
||||
|
||||
## 4.24.0 PySimpleGUI 3-Jul-2020
|
||||
|
||||
Selective control over tk 8.6.9 treeview color patch
|
||||
|
||||
* Disabled the code that patched the problem with background colors for Tree and Table elements
|
||||
* Can enable the patched code by calling set_options
|
||||
* To enable set parameter enable_treeview_869_patch = True (defaults to false)
|
||||
|
||||
### Upcoming
|
||||
|
||||
There will always be overlapping work as the ports will never actually be "complete" as there's always something new that can be built. However there's a definition for the base functionality for PySimpleGUI. This is what is being strived for with the current ports that are underway.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue