Bumped version
This commit is contained in:
parent
8782494c87
commit
39fdf072a4
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/python3
|
#!/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
|
# 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!
|
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:
|
try:
|
||||||
self.ParentNotebook.select(self.TabID)
|
self.ParentNotebook.select(self.TabID)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
Loading…
Reference in New Issue