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 68686

Summary: "Jackpot Results" window should bind F12 & S-F12
Product: contrib Reporter: Jesse Glick <jglick>
Component: JackpotAssignee: _ tball <tball>
Status: RESOLVED FIXED    
Severity: blocker    
Priority: P3    
Version: 5.x   
Hardware: All   
OS: All   
URL: http://www.netbeans.org/download/dev/javadoc/org-openide-actions/overview-summary.html#arch-usecases
Issue Type: DEFECT Exception Reporter:

Description Jesse Glick 2005-11-14 20:14:04 UTC
It is annoying to have to click on the Jackpot Results window just to advance to
the next match e.g. of an operator like Unused Variables. Want to use the normal
F12 and S-F12 keybindings. This is possible in a TopComponent by

    getActionMap().put("PreviousViewAction", ....);
    getActionMap().put("NextViewAction", ....);

(see URL).
Comment 1 _ tball 2005-11-14 21:29:36 UTC
Sounds good -- thanks for the suggestion.
Comment 2 _ tball 2005-11-17 01:05:01 UTC
Implemented.  FYI, F12 maps to "jumpNext" and S-F12 to "jumpPrev";
"NextViewAction" maps to "Next Inner View", which only property sheets with
multiple tabs appear to use.