Skip to content

Commit

Permalink
Merge pull request #1 from The-Ladle/The-Ladle_Viewport-Navigation
Browse files Browse the repository at this point in the history
change key bindings to make more intuitive up/down motion
  • Loading branch information
The-Ladle authored Jun 11, 2024
2 parents b2b06cc + 7c1c9ad commit 7cca113
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions editor/src/settings/keys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ impl Default for KeyBindings {
move_back: KeyBinding::from_key_code(KeyCode::KeyS),
move_left: KeyBinding::from_key_code(KeyCode::KeyA),
move_right: KeyBinding::from_key_code(KeyCode::KeyD),
move_up: KeyBinding::from_key_code(KeyCode::KeyQ),
move_down: KeyBinding::from_key_code(KeyCode::KeyE),
move_up: KeyBinding::from_key_code(KeyCode::KeyE),
move_down: KeyBinding::from_key_code(KeyCode::KeyQ),
speed_up: KeyBinding::from_key_code(KeyCode::ControlLeft),
slow_down: KeyBinding::from_key_code(KeyCode::ShiftLeft),

Expand Down

0 comments on commit 7cca113

Please sign in to comment.