From 5b409113213cf50e0f76688427ea00e6e111d9de Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Tue, 12 Jan 2021 17:41:37 -0300 Subject: [PATCH] [ui] setting 'info' cursor to form help icons --- CHANGELOG.md | 2 ++ bauh/view/qt/components.py | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1bb1f7d..1e90f874 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - repositories/AUR search time (=~ -70%) - Core - saving settings time (=~ -11%) +- UI + - minor improvements ### Fixes - Arch diff --git a/bauh/view/qt/components.py b/bauh/view/qt/components.py index 39823180..e389207e 100644 --- a/bauh/view/qt/components.py +++ b/bauh/view/qt/components.py @@ -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]: