-
Bug
-
Resolution: Duplicate
-
P1
-
None
-
5.0
-
x86
-
windows_2000
Canvas.setCursor(new Cursor(Cursor.HAND_CURSOR)) does not change the cursor on Windows (at least Windows 2000 professional). This bug is preventing plugin correctly implementing PhoneHome v2.
The bug can be reproduced with following simple app with b49. It works well with 1.4.2
import java.awt.*;
public class Test {
public static void main(String[] args) {
Frame f = new Frame();
f.setSize(300, 300);
Canvas c = new Canvas();
f.add(c);
c.setCursor(new Cursor(Cursor.HAND_CURSOR));
f.show();
}
The bug can be reproduced with following simple app with b49. It works well with 1.4.2
import java.awt.*;
public class Test {
public static void main(String[] args) {
Frame f = new Frame();
f.setSize(300, 300);
Canvas c = new Canvas();
f.add(c);
c.setCursor(new Cursor(Cursor.HAND_CURSOR));
f.show();
}
- duplicates
-
JDK-5040858 REGRESSION:Frame is missing coffee-cup icon
-
- Closed
-