Skip to content

Commit

Permalink
Merge pull request #1492 from krystof1119/javaCursorFix
Browse files Browse the repository at this point in the history
Fix edge of dot cursor in Java vncviewer
  • Loading branch information
bphinz authored Jul 7, 2022
2 parents d0dafdc + 2f40e30 commit 798ee1a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions java/com/tigervnc/vncviewer/Viewport.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ public void updateWindow() {
}

static final int[] dotcursor_xpm = {
0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
0x00000000, 0xff000000, 0xff000000, 0xff000000, 0x00000000,
0x00000000, 0xff000000, 0xff000000, 0xff000000, 0x00000000,
0x00000000, 0xff000000, 0xff000000, 0xff000000, 0x00000000,
0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,
0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff,
0xffffffff, 0xff000000, 0xff000000, 0xff000000, 0xffffffff,
0xffffffff, 0xff000000, 0xff000000, 0xff000000, 0xffffffff,
0xffffffff, 0xff000000, 0xff000000, 0xff000000, 0xffffffff,
0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff,
};

public void setCursor(int width, int height, Point hotspot,
Expand Down

0 comments on commit 798ee1a

Please sign in to comment.