Skip to content
This repository has been archived by the owner on Feb 15, 2022. It is now read-only.

Commit

Permalink
fix: Alt Shift S to export selected node
Browse files Browse the repository at this point in the history
  • Loading branch information
lukors committed Apr 21, 2021
1 parent a38ffec commit d28b949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ fn hotkeys(
KeyCode::F12 => Some(tool_state.set(ToolState::Process)),
KeyCode::G => Some(tool_state.set(ToolState::Grab)),
KeyCode::S => {
if alt_pressed(&input) {
if alt_pressed(&input) && shift_pressed(&input) {
Some(tool_state.set(ToolState::Export))
} else {
None
Expand Down

0 comments on commit d28b949

Please sign in to comment.