fix(ProfileShowcase): Fix blinking when hovering over an address (#13865)
#13681
This commit is contained in:
parent
29c61d8135
commit
058b08d3c9
|
@ -216,7 +216,7 @@ ItemDelegate {
|
|||
\qmlproperty alias StatusDraggableListItem::containsMouse
|
||||
Used to read if the component cotains mouse
|
||||
*/
|
||||
readonly property alias containsMouse: dragHandler.containsMouse
|
||||
readonly property alias containsMouse: hoverHandler.hovered
|
||||
|
||||
/*!
|
||||
\qmlproperty bool StatusDraggableListItem::changeColorOnDragActive
|
||||
|
@ -270,7 +270,6 @@ ItemDelegate {
|
|||
drag.target: root.dragEnabled ? root : null
|
||||
drag.axis: root.dragAxis
|
||||
preventStealing: true // otherwise DND is broken inside a Flickable/ScrollView
|
||||
hoverEnabled: true
|
||||
cursorShape: {
|
||||
if (!root.enabled)
|
||||
return undefined
|
||||
|
@ -417,4 +416,7 @@ ItemDelegate {
|
|||
asset.bgWidth: 40
|
||||
}
|
||||
}
|
||||
HoverHandler {
|
||||
id: hoverHandler
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue