From cca7c7feee2242419a6d54886c3461b54a768ca6 Mon Sep 17 00:00:00 2001 From: Daniel Hammerschmidt Date: Sun, 14 Sep 2025 12:34:43 +0200 Subject: [PATCH] fix cursor while dragging when not view-only --- core/rfb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rfb.js b/core/rfb.js index aa7ef6e7..997592ba 100644 --- a/core/rfb.js +++ b/core/rfb.js @@ -3088,7 +3088,7 @@ export default class RFB extends EventTargetMixin { image.w, image.h ); if (this._dragViewport && this._showDragCursor) { - this._cursor.setLocalCursor('grab'); + this._cursor.setLocalCursor(this._viewportDragging ? 'grabbing' : 'grab'); } else if (this._showLocalCursor) { this._cursor.setLocalCursor('default'); } else {