mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-23 12:59:44 +00:00
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…
x
Reference in New Issue
Block a user