Index: graph/lib/apichanges.xml =================================================================== RCS file: /cvs/graph/lib/apichanges.xml,v retrieving revision 1.24 diff -u -r1.24 apichanges.xml --- graph/lib/apichanges.xml 18 Jul 2007 13:39:40 -0000 1.24 +++ graph/lib/apichanges.xml 20 Jul 2007 10:31:47 -0000 @@ -330,6 +330,21 @@ + + + + CycleFocusAction is using Shift+Tab keystroke for focus-to-previous action + + + + + + CycleFocusAction (created using ActionFactory.createCycleFocusAction method) is using Shift+Tab keystroke for focus-to-previous action. + Previously it was Ctrl+Tab keystroke. + + + + Index: graph/lib/manifest.mf =================================================================== RCS file: /cvs/graph/lib/manifest.mf,v retrieving revision 1.13 diff -u -r1.13 manifest.mf --- graph/lib/manifest.mf 25 Jun 2007 14:10:16 -0000 1.13 +++ graph/lib/manifest.mf 20 Jul 2007 10:31:47 -0000 @@ -1,4 +1,4 @@ Manifest-Version: 1.0 OpenIDE-Module: org.netbeans.api.visual OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/visual/resources/Bundle.properties -OpenIDE-Module-Specification-Version: 2.5 +OpenIDE-Module-Specification-Version: 2.6 Index: graph/lib/src/org/netbeans/modules/visual/action/CycleFocusAction.java =================================================================== RCS file: /cvs/graph/lib/src/org/netbeans/modules/visual/action/CycleFocusAction.java,v retrieving revision 1.2 diff -u -r1.2 CycleFocusAction.java --- graph/lib/src/org/netbeans/modules/visual/action/CycleFocusAction.java 21 Nov 2006 11:23:07 -0000 1.2 +++ graph/lib/src/org/netbeans/modules/visual/action/CycleFocusAction.java 20 Jul 2007 10:31:47 -0000 @@ -38,7 +38,7 @@ public State keyTyped (Widget widget, WidgetKeyEvent event) { boolean state = false; if (event.getKeyChar () == KeyEvent.VK_TAB) { - if ((event.getModifiersEx () & KeyEvent.CTRL_DOWN_MASK) != 0) + if ((event.getModifiers () & KeyEvent.SHIFT_MASK) == KeyEvent.SHIFT_MASK) state = provider.switchPreviousFocus (widget); else state = provider.switchNextFocus (widget);