Merge pull request #1795 from PySimpleGUI/Dev-latest

Addition of TabGroup.GetCurrentIndex to tkinter port.  Renamed in Qt …
This commit is contained in:
MikeTheWatchGuy 2019-08-08 16:23:17 -04:00 committed by GitHub
commit 2f2b2de9b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 2 deletions

View file

@ -2267,7 +2267,7 @@ class TabGroup(Element):
except:
pass
def GetCurrent(self):
def GetCurrentIndex(self):
try:
index = self.QT_QTabWidget.currentIndex()
except: