This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 27034 - Cursor disappears when the same funciton is selected twice
Summary: Cursor disappears when the same funciton is selected twice
Status: RESOLVED WONTFIX
Alias: None
Product: java
Classification: Unclassified
Component: Unsupported (show other bugs)
Version: 3.x
Hardware: PC Windows ME/2000
: P4 blocker (vote)
Assignee: issues@java
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-09-04 17:45 UTC by oneway
Modified: 2007-09-26 09:14 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description oneway 2002-09-04 17:45:54 UTC
1) open a class in the source editor
2) select some function from drop-down list 
(cursor moves to the selected func in the code)
3) select the same func again from the drop-
down list and cursor disappears completely.
Comment 1 Martin Roskanin 2002-09-12 15:04:20 UTC
Yes, because the focus remains in the combobox. NavigationView is part
of the java module. Reassigning
Comment 2 Svata Dedic 2003-02-27 18:22:24 UTC
Hmm... this will be WONTFIX. The cause is, as Mato said, that the 
combo box "value" did not change actually. JDK-1.4* at least calls 
setPopupVisible(false) on the combo, which is already trapped and 
moves the focus back to the Editor. But JDK-1.3 fails to notify the 
component that the popup is closed.