I'm getting a strange solid-white-filled arrow cursor
back from Cursor.getPredefinedCursor(Cursor.MOVE_CURSOR).
I expected the "Open Hand" cursor. Running my code under
1.3.1_03-76 gives the expected cursor, as does MRJ 2.2.6.
Is my Java install screwed, or do others see this too?
Simple test program:
import java.awt.*;
public class CursorTest extends Frame {
Cursor curs = Cursor.getPredefinedCursor(Cursor.MOVE_CURSOR);
CursorTest() {
super ("Cursor Test Frame");
setCursor (curs);
setSize (512, 384);
}
public static void main (String[] args) {
CursorTest me = new CursorTest();
me.show();
}
}
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Java-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/java-dev/email@hidden