Skip to content

Commit eeeec4d

Browse files
committed
Fix-2
1 parent 9b2c17b commit eeeec4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/src/messages/input_mapper/input_mappings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pub fn input_mappings(zoom_with_scroll: bool) -> Mapping {
7474
entry!(KeyDown(MouseLeft); modifiers=[Alt], action_dispatch=NodeGraphMessage::PointerDown { shift_click: false, control_click: false, alt_click: true, right_click: false }),
7575
entry!(KeyDown(MouseRight); action_dispatch=NodeGraphMessage::PointerDown { shift_click: false, control_click: false, alt_click: false, right_click: true }),
7676
entry!(DoubleClick(MouseButton::Left); action_dispatch=NodeGraphMessage::EnterNestedNetwork),
77-
entry!(PointerMove; refresh_keys=[Shift], action_dispatch=NodeGraphMessage::PointerMove { shift: Shift }),
77+
entry!(PointerMove; refresh_keys=[Shift, Control, Alt], action_dispatch=NodeGraphMessage::PointerMove { shift: Shift }),
7878
entry!(PointerShake; action_dispatch=NodeGraphMessage::ShakeNode),
7979
entry!(KeyUp(MouseLeft); action_dispatch=NodeGraphMessage::PointerUp),
8080
entry!(KeyDown(Delete); modifiers=[Accel], action_dispatch=NodeGraphMessage::DeleteSelectedNodes { delete_children: false }),

0 commit comments

Comments
 (0)