Skip to content

Commit

Permalink
Merge pull request #2570 from Azmoria/Fix---elevation-menu-hotkey-was…
Browse files Browse the repository at this point in the history
…-not-set

Fix - elevation menu hotkey was not set
  • Loading branch information
Azmoria authored Oct 15, 2024
2 parents e9f2eb6 + 6f02560 commit 98025d8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions KeypressHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,15 @@ Mousetrap.bind('r', function () { //ruler
});


Mousetrap.bind('s', function () { //video fullscreen toggle
Mousetrap.bind('s', function () { //select
$('#select-button').click()
});

Mousetrap.bind('e', function () { //elev
$('#elev_button').click()
});

Mousetrap.bind('v', function () { //video fullscreen toggle
Mousetrap.bind('v', function () { //video toggle
if(shiftHeld)
return;

Expand Down

0 comments on commit 98025d8

Please sign in to comment.