Skip to content

Commit 367e034

Browse files
committed
Allow cursor to update by default on right handle bar
This improves discoverability and it has an effect now that the the handle bars' range of motion has been expanded.
1 parent 4653b0a commit 367e034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/prompter/Prompter.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@ Flickable {
12081208
drag.smoothed: false
12091209
drag.minimumX: -editor.x + fontSize/8 //prompter.width - editor.x - editor.width - leftWidthAdjustmentBar.drag.maximumX
12101210
drag.maximumX: prompter.width - editor.x - parent.width - leftWidthAdjustmentBar.drag.minimumX - fontSize/6
1211-
cursorShape: (pressed||drag.active||prompter.dragging) ? Qt.ClosedHandCursor : flicking ? Qt.OpenHandCursor : (contentsPlacement ? Qt.OpenHandCursor : Qt.ArrowCursor)
1211+
cursorShape: (pressed||drag.active||prompter.dragging) ? Qt.ClosedHandCursor : flicking ? Qt.OpenHandCursor : Qt.OpenHandCursor
12121212
onEntered: hovered = true
12131213
onExited: hovered = false
12141214
onDoubleClicked: {

0 commit comments

Comments
 (0)