Merge pull request #1732 from PySimpleGUI/Dev-latest

Dev latest
This commit is contained in:
MikeTheWatchGuy 2019-07-24 08:29:02 -04:00 committed by GitHub
commit 0a12b701d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/python3
version = __version__ = "0.27.0.1 Unreleased"
version = __version__ = "0.27.0.2 Unreleased"
import sys
import types
@ -7277,7 +7277,7 @@ def PopupGetText(message, title=None, default_text='', password_char='', size=(N
"""
layout = [[Text(message, auto_size_text=True, text_color=text_color, background_color=background_color, font=font)],
[InputText(default_text=default_text, size=size, password_char=password_char)],
[InputText(default_text=default_text, size=size, password_char=password_char, key='_INPUT_')],
[CloseButton('Ok', size=(60, 20), bind_return_key=True), CloseButton('Cancel', size=(60, 20))]]
_title = title if title is not None else message