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.

View | Details | Raw Unified | Return to bug 13805
Collapse All | Expand All

(-)ExplorerBean.java (-6 / +7 lines)
Line 75 Link Here
75
            if ((cc = c.getComponent (i)).isFocusTraversable ())
75
            if ((cc = c.getComponent (i)).isFocusTraversable ()) 
76
--
Line 230 Link Here
230
        Component f = findFocusable ((Container) explorerView);
230
        
231
--
231
        Component f = null;
232
        if( System.getProperty("java.version").startsWith("1.4") )   //NOI18N
233
            f = findFocusable ((Container)((Container) explorerView).getComponent(0));
234
        else
235
            f = findFocusable ((Container) explorerView);
Line 252 Link Here
252
253
--

Return to bug 13805