Merge pull request #1589 from PySimpleGUI/Dev-latest
Release 4.0.0 & 2.0.0
This commit is contained in:
commit
2672c034a8
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
__version__ = "4.0.0 Unreleased"
|
__version__ = "4.0.0"
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
@ -1122,7 +1122,10 @@ class Radio(Element):
|
||||||
self.TKIntVar.set(0)
|
self.TKIntVar.set(0)
|
||||||
|
|
||||||
def Get(self):
|
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
|
return self.TKIntVar.get() == self.EncodedRadioValue
|
||||||
|
|
||||||
|
|
||||||
|
|
3538
PySimpleGUI27.py
3538
PySimpleGUI27.py
File diff suppressed because it is too large
Load Diff
1954
docs/index.md
1954
docs/index.md
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue