Merge pull request #2325 from PySimpleGUI/Dev-latest

More instructions added to Window init on look and feel settings
This commit is contained in:
PySimpleGUI 2019-12-07 12:23:37 -05:00 committed by GitHub
commit 6382fabf7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/python3 #!/usr/bin/python3
version = __version__ = "4.8.0.4 Unreleased - Tab colors! New look and feel to stop gray nagging - DefaultNoMoreNagging" version = __version__ = "4.8.0.5 Unreleased - Tab colors! No nag theme = DefaultNoMoreNagging"
port = 'PySimpleGUI' port = 'PySimpleGUI'
@ -5362,7 +5362,8 @@ class Window:
self.Finalize() self.Finalize()
if CURRENT_LOOK_AND_FEEL == 'Default': if CURRENT_LOOK_AND_FEEL == 'Default':
print("Window will be a boring gray. Try adding call to change_look_and_feel('Dark Blue 3') before your layout definition") print("Window will be a boring gray. Try adding call to change_look_and_feel('Dark Blue 3') before your layout definition\n",
"If you seriously want this gray window and no more nagging, add change_look_and_feel('DefaultNoMoreNagging') ")
@classmethod @classmethod
def GetAContainerNumber(cls): def GetAContainerNumber(cls):