fix cursor while dragging when not view-only

This commit is contained in:
Daniel Hammerschmidt 2025-09-14 12:34:43 +02:00
parent 40aea41790
commit cca7c7feee
1 changed files with 1 additions and 1 deletions

View File

@ -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 {