Bumped version

This commit is contained in:
MikeTheWatchGuy 2019-08-10 17:17:33 -04:00
parent 8782494c87
commit 39fdf072a4
1 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#!/usr/bin/python3
version = __version__ = "4.2.0.2 Unreleased"
version = __version__ = "4.2.0.3 Unreleased"
# 888888ba .d88888b oo dP .88888. dP dP dP
@ -3467,9 +3467,8 @@ class Tab(Element):
"""
Create a tkinter event that mimics user clicking on a tab. Must have called window.Finalize / Read first!
:param index: (int) indicates which Tab should be selected. Count starts at 0
"""
# Use a try in case the window has been destoyed
try:
self.ParentNotebook.select(self.TabID)
except Exception as e: