Closed GoogleCodeExporter closed 9 years ago
This issue does not exist in 0.56.
Original comment by wecks...@gmail.com
on 17 Jun 2011 at 6:36
I’ll have a look
Original comment by patrick.balleux
on 17 Jun 2011 at 6:48
This is the first line that fails due to null pointer exception:
46: int screenwidth =
java.awt.MouseInfo.getPointerInfo().getDevice().getDisplayMode().getWidth();
Also, correcting myself, getDisplayMode() returns null, not getDevice().
Original comment by wecks...@gmail.com
on 17 Jun 2011 at 12:18
*hack*
int screenwidth = java.awt.Toolkit.getDefaultToolkit().getScreenSize().width;
int screenheight = java.awt.Toolkit.getDefaultToolkit().getScreenSize().height;
For systems with one screen this is a solution.
Original comment by wecks...@gmail.com
on 17 Jun 2011 at 2:40
Fixed, thanks for the pointer
Original comment by patrick.balleux
on 13 Nov 2011 at 4:05
Original issue reported on code.google.com by
wecks...@gmail.com
on 16 Jun 2011 at 9:35