@@ -50,18 +50,18 @@ export const GraphBar = (props: GraphBarProps): ReactNode => {
5050 const dispatch = useDispatch ( ) ;
5151 const graph = useSelector ( ( s ) => s . graphs . byId [ props . graphId ] ) ;
5252 const relationInputActionsRef = useRef < RelationInputActions > ( null ) ;
53- const tabsterAttributes = useTabsterAttributes ( {
53+ const dragHandleTabsterAttributes = useTabsterAttributes ( {
5454 focusable : {
5555 ignoreKeydown : {
56- ArrowDown : true ,
57- ArrowLeft : true ,
58- ArrowRight : true ,
59- ArrowUp : true ,
60- End : true ,
61- Home : true ,
62- PageDown : true ,
63- PageUp : true ,
64- Tab : true ,
56+ ArrowDown : draggingWithKeyboard ,
57+ ArrowLeft : draggingWithKeyboard ,
58+ ArrowRight : draggingWithKeyboard ,
59+ ArrowUp : draggingWithKeyboard ,
60+ End : draggingWithKeyboard ,
61+ Home : draggingWithKeyboard ,
62+ PageDown : draggingWithKeyboard ,
63+ PageUp : draggingWithKeyboard ,
64+ Tab : draggingWithKeyboard ,
6565 } ,
6666 } ,
6767 } ) ;
@@ -84,7 +84,7 @@ export const GraphBar = (props: GraphBarProps): ReactNode => {
8484 < Toolbar style = { { background : tokens . colorNeutralBackground1 } } >
8585 < ToolbarButton
8686 { ...dragHandleProps }
87- { ...( draggingWithKeyboard ? tabsterAttributes : { } ) }
87+ { ...dragHandleTabsterAttributes }
8888 appearance = "transparent"
8989 icon = { < ReOrderDotsVerticalRegular /> }
9090 style = { {
0 commit comments