Skip to content

Commit

Permalink
fix: set cursor shape for dock and tray
Browse files Browse the repository at this point in the history
  • Loading branch information
wineee committed Apr 25, 2024
1 parent 26f2312 commit 957ecfe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions panels/dock/package/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,10 @@ Window {
}
}

HoverHandler {
cursorShape: Qt.ArrowCursor
}

// TODO missing property binding to update ProxyModel's filter and sort opearation.
Repeater {
model: Applet.appletItems
Expand Down
3 changes: 3 additions & 0 deletions panels/dock/tray/frame/package/tray.qml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ AppletItem {
property var dockHeight: Applet.dockHeight + (useColumnLayout ? 12 : 0)

WidgetProxy {
HoverHandler {
cursorShape: Qt.ArrowCursor
}
anchors.centerIn: parent
Component.onCompleted: Applet.initDock()
}
Expand Down

0 comments on commit 957ecfe

Please sign in to comment.