Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P2: Important
-
Resolution: Done
-
Affects Version/s: 5.1.0 Beta 1, 5.12.1
-
Fix Version/s: 6.1.0 Alpha, Some future release
-
Component/s: Quick: Core Declarative QML
-
Commits:831efa14e91cfa358e57a32197578d41c2ae1b24 (qt/qtdeclarative/dev)
-
Sprint:Bug Fixing Week Q2/2020
Description
The tooltip is not shown when the mouse is hovered above a disabled button.
import QtQuick 2.1 import QtQuick.Controls 1.0 Item { width: 300 height: 300 Button { text: "button" tooltip: "hello button" enabled: false } }
For controls 2: Following code is not showing toolTip when a button is disabled
Button { id: conbutton text: "test" enabled: false ToolTip.visible : hovered ToolTip.text : "test tooltip" }
Attachments
Issue Links
- relates to
-
QTBUG-78487 Button: hover effect does not disappear on disabled
-
- Closed
-
- resulted in
-
QTBUG-94919 Control changes hover state even though it is disabled
-
- Reported
-
-
QDS-4658 Hover state still enabled in blocked property
-
- Closed
-