diff options
author | Brian Hinz <bphinz@users.sourceforge.net> | 2013-01-23 22:46:53 +0000 |
---|---|---|
committer | Brian Hinz <bphinz@users.sourceforge.net> | 2013-01-23 22:46:53 +0000 |
commit | d39531edfe58343cefc29ab495462f1005edf2c5 (patch) | |
tree | 7719143d0eb79766be7f3546a79ea069ba723a93 /java/com/tigervnc/vncviewer/DesktopWindow.java | |
parent | 09b8385146b7e6e1ae3a7df7b9883a25f5c03b13 (diff) | |
download | tigervnc-d39531edfe58343cefc29ab495462f1005edf2c5.tar.gz tigervnc-d39531edfe58343cefc29ab495462f1005edf2c5.zip |
Fixes a number of issues related to fullscreen mode. When switching out of fullscreen mode via the options dialog, setFullScreenWindow was being applied to the old reference, causing the whole screen to be blanked and unresponsive. The checkmark in the F8 menu could sometimes get out of sync with the state of the option. Cursor wasn't always being re-scaled when scale factor was changed. It seems that setCursor can still sometimes be passed a null pointer for the hotspot, so add back in a check that was removed in r5025
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@5034 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'java/com/tigervnc/vncviewer/DesktopWindow.java')
-rw-r--r-- | java/com/tigervnc/vncviewer/DesktopWindow.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/com/tigervnc/vncviewer/DesktopWindow.java b/java/com/tigervnc/vncviewer/DesktopWindow.java index d7a734f2..7254a0b8 100644 --- a/java/com/tigervnc/vncviewer/DesktopWindow.java +++ b/java/com/tigervnc/vncviewer/DesktopWindow.java @@ -125,7 +125,7 @@ class DesktopWindow extends JPanel implements hideLocalCursor(); - cursor.hotspot = hotspot; + cursor.hotspot = (hotspot != null) ? hotspot : new Point(0, 0); cursor.setSize(w, h); cursor.setPF(getPF()); @@ -171,8 +171,8 @@ class DesktopWindow extends JPanel implements g2.dispose(); srcImage.flush(); - int x = (int)Math.floor((float)hotspot.x * scaleWidthRatio); - int y = (int)Math.floor((float)hotspot.y * scaleHeightRatio); + int x = (int)Math.floor((float)cursor.hotspot.x * scaleWidthRatio); + int y = (int)Math.floor((float)cursor.hotspot.y * scaleHeightRatio); x = (int)Math.min(x, Math.max(bestSize.width-1, 0)); y = (int)Math.min(y, Math.max(bestSize.height-1, 0)); java.awt.Point hs = new java.awt.Point(x, y); |