Add default local cursor set to UI
This commit is contained in:
parent
4fc3fc91e1
commit
702302fcc5
|
|
@ -1103,6 +1103,11 @@ const UI = {
|
||||||
UI.rfb.qualityLevel = parseInt(UI.getSetting('quality'));
|
UI.rfb.qualityLevel = parseInt(UI.getSetting('quality'));
|
||||||
UI.rfb.compressionLevel = parseInt(UI.getSetting('compression'));
|
UI.rfb.compressionLevel = parseInt(UI.getSetting('compression'));
|
||||||
UI.rfb.showDotCursor = UI.getSetting('show_dot');
|
UI.rfb.showDotCursor = UI.getSetting('show_dot');
|
||||||
|
UI.rfb.showLocalCursor = {
|
||||||
|
drag: 'grab',
|
||||||
|
dragging: 'grabbing',
|
||||||
|
empty: 'default',
|
||||||
|
};
|
||||||
|
|
||||||
UI.updateViewOnly(); // requires UI.rfb
|
UI.updateViewOnly(); // requires UI.rfb
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue