Merge pull request #1589 from PySimpleGUI/Dev-latest

Release 4.0.0 & 2.0.0
This commit is contained in:
MikeTheWatchGuy 2019-06-19 13:15:27 -04:00 committed by GitHub
commit 2672c034a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6555 additions and 3180 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/python3
__version__ = "4.0.0 Unreleased"
__version__ = "4.0.0"
import sys
@ -1122,7 +1122,10 @@ class Radio(Element):
self.TKIntVar.set(0)
def Get(self):
""" """
"""
A snapshot of the value of Radio Button (True/False)
:return: Bool - True is radio button is chosen
"""
return self.TKIntVar.get() == self.EncodedRadioValue

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

3054
readme.md

File diff suppressed because it is too large Load Diff