[ui] setting 'info' cursor to form help icons

This commit is contained in:
Vinicius Moreira
2021-01-12 17:41:37 -03:00
parent ad642404f5
commit 5b40911321
2 changed files with 3 additions and 0 deletions

View File

@@ -766,6 +766,7 @@ class FormQt(QGroupBox):
tip_icon = QLabel()
tip_icon.setProperty('tip_icon', 'true')
tip_icon.setToolTip(tip.strip())
tip_icon.setCursor(QCursor(Qt.WhatsThisCursor))
return tip_icon
def _new_text_input(self, c: TextInputComponent) -> Tuple[QLabel, QLineEdit]: