diff --git a/desktoppackage/contents/configuration/panelconfiguration/EdgeHandle.qml b/desktoppackage/contents/configuration/panelconfiguration/EdgeHandle.qml --- a/desktoppackage/contents/configuration/panelconfiguration/EdgeHandle.qml +++ b/desktoppackage/contents/configuration/panelconfiguration/EdgeHandle.qml @@ -25,12 +25,13 @@ PlasmaComponents.Button { text: i18nd("plasma_shell_org.kde.plasma.desktop", "Screen Edge") + iconSource: "transform-move" checkable: true checked: mel.pressed KQuickControlsAddons.MouseEventListener { id: mel - cursorShape: Qt.DragMoveCursor + cursorShape: Qt.SizeAllCursor anchors.fill: parent property int lastX property int lastY diff --git a/desktoppackage/contents/configuration/panelconfiguration/SizeHandle.qml b/desktoppackage/contents/configuration/panelconfiguration/SizeHandle.qml --- a/desktoppackage/contents/configuration/panelconfiguration/SizeHandle.qml +++ b/desktoppackage/contents/configuration/panelconfiguration/SizeHandle.qml @@ -27,6 +27,9 @@ readonly property string textLabel: panel.location == PlasmaCore.Types.LeftEdge || panel.location == PlasmaCore.Types.RightEdge ? i18nd("plasma_shell_org.kde.plasma.desktop", "Width") : i18nd("plasma_shell_org.kde.plasma.desktop", "Height") text: panelResizeHintTimer.running ? panel.thickness : textLabel + readonly property string sizeIcon: panel.location == PlasmaCore.Types.LeftEdge || panel.location == PlasmaCore.Types.RightEdge ? "zoom-fit-width" : "zoom-fit-height" + iconSource: sizeIcon + checkable: true checked: mel.pressed