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 110389
Collapse All | Expand All

(-)graph/lib/apichanges.xml (+15 lines)
Lines 330-335 Link Here
330
            <class package="org.netbeans.api.visual.vmd" name="VMDColorScheme" link="yes"/>
330
            <class package="org.netbeans.api.visual.vmd" name="VMDColorScheme" link="yes"/>
331
            <issue number="105929"/>
331
            <issue number="105929"/>
332
        </change>
332
        </change>
333
334
        <change>
335
            <api name="general"/>
336
            <summary>CycleFocusAction is using Shift+Tab keystroke for focus-to-previous action</summary>
337
            <version major="2" minor="6"/>
338
            <date day="20" month="7" year="2007"/>
339
            <author login="dkaspar"/>
340
            <compatibility semantic="incompatible" modification="yes"/>
341
            <description>
342
                CycleFocusAction (created using ActionFactory.createCycleFocusAction method) is using Shift+Tab keystroke for focus-to-previous action.
343
                Previously it was Ctrl+Tab keystroke.
344
            </description>
345
            <class package="org.netbeans.api.visual.action" name="ActionFactory" link="yes"/>
346
            <issue number="110389"/>
347
        </change>
333
    </changes>
348
    </changes>
334
349
335
    <htmlcontents>
350
    <htmlcontents>
(-)graph/lib/manifest.mf (-1 / +1 lines)
Lines 1-4 Link Here
1
Manifest-Version: 1.0
1
Manifest-Version: 1.0
2
OpenIDE-Module: org.netbeans.api.visual
2
OpenIDE-Module: org.netbeans.api.visual
3
OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/visual/resources/Bundle.properties
3
OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/visual/resources/Bundle.properties
4
OpenIDE-Module-Specification-Version: 2.5
4
OpenIDE-Module-Specification-Version: 2.6
(-)graph/lib/src/org/netbeans/modules/visual/action/CycleFocusAction.java (-1 / +1 lines)
Lines 38-44 Link Here
38
    public State keyTyped (Widget widget, WidgetKeyEvent event) {
38
    public State keyTyped (Widget widget, WidgetKeyEvent event) {
39
        boolean state = false;
39
        boolean state = false;
40
        if (event.getKeyChar () == KeyEvent.VK_TAB) {
40
        if (event.getKeyChar () == KeyEvent.VK_TAB) {
41
            if ((event.getModifiersEx () & KeyEvent.CTRL_DOWN_MASK) != 0)
41
            if ((event.getModifiers () & KeyEvent.SHIFT_MASK) == KeyEvent.SHIFT_MASK)
42
                state = provider.switchPreviousFocus (widget);
42
                state = provider.switchPreviousFocus (widget);
43
            else
43
            else
44
                state = provider.switchNextFocus (widget);
44
                state = provider.switchNextFocus (widget);

Return to bug 110389