Skip to content

Commit

Permalink
#86 disable cursor scaling on MacOS for now
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Aug 2, 2021
1 parent 35ffe69 commit 9c89806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html5/js/Window.js
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ XpraWindow.prototype.set_cursor = function(encoding, w, h, xhot, yhot, img_data)
if (Math.round(zoom*4)==(2*Math.round(zoom*2))){
zoom = Math.round(zoom*2)/2;
}
if (zoom!=1) {
if (zoom!=1 && !Utilities.isMacOS()) {
//scale it:
const tmp_img = new Image();
tmp_img.onload = function() {
Expand Down

0 comments on commit 9c89806

Please sign in to comment.