mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-16 08:37:12 +00:00
fix(NetworkFilter): display correct cursor
- since we override the `control.background` from `StatusComboBox`, need to specify the `cursorShape` again
This commit is contained in:
parent
fb2d1ad0f0
commit
14138d5ff5
@ -1,5 +1,6 @@
|
||||
import QtQuick 2.15
|
||||
import QtQuick.Layouts 1.13
|
||||
import QtQuick.Controls 2.15
|
||||
import QtQuick.Layouts 1.15
|
||||
|
||||
import StatusQ 0.1
|
||||
import StatusQ.Core 0.1
|
||||
@ -72,6 +73,9 @@ StatusComboBox {
|
||||
radius: 8
|
||||
color: root.control.hovered ? Theme.palette.baseColor2 : "transparent"
|
||||
border.color: Theme.palette.directColor7
|
||||
HoverHandler {
|
||||
cursorShape: root.enabled ? Qt.PointingHandCursor : undefined
|
||||
}
|
||||
}
|
||||
|
||||
contentItem: RowLayout {
|
||||
|
Loading…
x
Reference in New Issue
Block a user