Details
-
Bug
-
Resolution: Done
-
P2: Important
-
5.1.0 Beta 1, 5.12.1
-
831efa14e91cfa358e57a32197578d41c2ae1b24 (qt/qtdeclarative/dev)
-
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
- blocks
-
QTBUG-46460 MouseArea.containsMouse doesn't revert to false if enabled is set to false
- Closed
- relates to
-
QTBUG-106548 [REG 6.2.4 - 6.3.2] HoverHandler "eats" all hover events even when disabled
- Closed
-
QTBUG-78487 Button: hover effect does not disappear on disabled
- Closed
- resulted in
-
QTBUG-94919 Control changes hover state even though it is disabled
- In Progress
-
QDS-4658 Hover state still enabled in blocked property
- Closed
-
QTBUG-103716 Disabled QML Item background color changes on mouse hover
- Closed