diff src/viewer_swing/java/com/glavsoft/viewer/swing/SwingViewerWindow.java @ 500:6609174beafe

fix subencoding
author oshiro
date Sun, 17 Feb 2019 17:55:25 +0900
parents 126b84644ca7
children
line wrap: on
line diff
--- a/src/viewer_swing/java/com/glavsoft/viewer/swing/SwingViewerWindow.java	Sat Feb 16 17:31:34 2019 +0900
+++ b/src/viewer_swing/java/com/glavsoft/viewer/swing/SwingViewerWindow.java	Sun Feb 17 17:55:25 2019 +0900
@@ -993,7 +993,7 @@
         // find which screen we are on
         Point thisScreenLocation = frame.getLocation();
         Point mouse = frame.getMousePosition();
-        System.out.println("finding this screeen number " + thisScreenLocation + " mouse " + mouse + " on screen 0 " + rectangles.get(0)) ;
+        System.out.println("finding this screen number " + thisScreenLocation + " mouse " + mouse + " on screen 0 " + rectangles.get(0)) ;
         int thisScreenNumber = 0;
         for(Rectangle rect : rectangles) {
             if ( rect.contains(thisScreenLocation) ) return thisScreenNumber;