Window Hide and UnHide methods

This commit is contained in:
MikeTheWatchGuy 2018-11-25 18:51:57 -05:00
parent 0f302ef5a0
commit efb66aa33d
1 changed files with 2 additions and 1 deletions

View File

@ -3278,12 +3278,13 @@ class Window:
def Hide(self):
self._Hidden = True
self.QT_QMainWindow.hide()
# TODO
return
def UnHide(self):
if self._Hidden:
# TODO
self.QT_QMainWindow.show()
self._Hidden = False
def Disappear(self):