Button Tooltips

This commit is contained in:
MikeTheWatchGuy 2018-11-08 18:18:28 -05:00
parent f92a592c0c
commit 5ee602b980
1 changed files with 3 additions and 3 deletions

View File

@ -2642,8 +2642,7 @@ class Window:
if not self.Shown: if not self.Shown:
self.Show(non_blocking=True) self.Show(non_blocking=True)
else: else:
# self.QTWindow.show() ####### The thing that causes the window to be visible ###### self.QTApplication.processEvents() # refresh the window
print(self.QTApplication.processEvents())
if 0: # TODO add window closed with X logic if 0: # TODO add window closed with X logic
self.TKrootDestroyed = True self.TKrootDestroyed = True
_my_windows.Decrement() _my_windows.Decrement()
@ -3635,7 +3634,8 @@ def PackFormIntoFrame(window, containing_frame, toplevel_win):
qt_row_layout.addWidget(element.QT_QPushButton) qt_row_layout.addWidget(element.QT_QPushButton)
element.QT_QPushButton.setContentsMargins(*full_element_pad) element.QT_QPushButton.setContentsMargins(*full_element_pad)
if element.Tooltip:
element.QT_QPushButton.setToolTip(element.Tooltip)
element.QT_QPushButton.clicked.connect(element.ButtonCallBack) element.QT_QPushButton.clicked.connect(element.ButtonCallBack)
# element.QT_QPushButton.clicked.connect(window.QTApplication.exit) # element.QT_QPushButton.clicked.connect(window.QTApplication.exit)
# ------------------------- INPUT (Single Line) element ------------------------- # # ------------------------- INPUT (Single Line) element ------------------------- #