Hi All,
Please review a doc fix for jdk9.
Bug: https://bugs.openjdk.java.net/browse/JDK-6212751
webrev: http://cr.openjdk.java.net/~psadhukhan/6212751/webrev.00/
After JDK-8138749 <https://bugs.openjdk.java.net/browse/JDK-8138749>
multimonitor support fix, the doc needs some change. It was also
misleading in the first place as the bugdescription pointed out
which is API doc for ServiceUI.printDialog() specifies that X,Y are
location of the dialog in screen coordinates, but for multmonitor setup,
it should be w.r.t to secondary screen
because
. If the sec monitor starts at 1025, 0 and If I specify 1025 as the X
coordinate, the calculated X value would be 1025 + 1025 = 2050 which
actually exceeds the bounds of virtual screen.
Updated the documentation .
Regards
Prasanta