JDK-5087202 : Mouse cursor should be arrow pointer on popup menu
  • Type: Bug
  • Component: client-libs
  • Sub-Component: java.awt
  • Affected Version: 5.0
  • Priority: P4
  • Status: Closed
  • Resolution: Duplicate
  • OS: windows_2000
  • CPU: x86
  • Submitted: 2004-08-16
  • Updated: 2006-05-15
  • Resolved: 2006-05-15
Related Reports
Duplicate :  
Description
Name: dk106046			Date: 08/16/2004

OPERATING SYSTEM(S):
Windows 2000

FULL JDK VERSION(S):
java version "1.4.2_04-ea"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-ea-b01)
Java HotSpot(TM) Client VM (build 1.4.2_04-ea-b01, mixed mode)
java version "1.5.0-beta3"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta3-b57)
Java HotSpot(TM) Client VM (build 1.5.0-beta3-b57, mixed mode)


1. Build AWTTest.java testcase:

import java.awt.*;

public class AWTTest{
    public static void main(String[] args){
	Frame f=new Frame("AWTTest");
	TextArea ta=new TextArea();
	f.add(ta);
	f.setSize(300,300);
	f.show();
    }
}

2. Run testcase:     java AWTTest

3. Select "AWT -> TextArea" menu

4. Click TextArea by using right-mouse button to open Windows' Edit popup menu

5. Move mouse pointer onto textarea to see it display an edit pointer.

6. Move mouse pointer onto popup menu.
   At this time, mouse cursor should be arrow pointer, 
   but it's still edit pointer. <== PROBLEM

======================================================================

Comments
EVALUATION The evaluator must have misunderstood the case. The bug is a duplicate of 5097531. Fixed in Mustang b10, and supposedly in Tiger u8.
15-05-2006

EVALUATION The test case provided doesn't contain popup menu. Please provide the correct test case ###@###.### 2004-08-16
16-08-2004