0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 20:42:43 +00:00

Change the last Boneheaded hot change to something better

CTRL-SHIFT-LEFTARROW - Source Jump
CTRL-SHIFT-RIGHTARROW - Brew Jump
This commit is contained in:
David Bolack
2024-06-19 18:39:20 -05:00
parent a48d9d295e
commit a3f146cd53

View File

@@ -88,10 +88,11 @@ const Editor = createClass({
handleControlKeys : function(e){
if(!(e.ctrlKey || e.metaKey)) return;
console.log(e);
const X_KEY = 88;
if((!e.shiftKey) && (e.keyCode == X_KEY)) this.brewJump();
if (e.shiftKey && (e.keyCode == X_KEY)) this.sourceJump();
if( e.keyCode == X_KEY) {
const LEFTARROW_KEY = 37;
const RIGHTARROW_KEY = 39;
if (e.shiftKey && (e.keyCode == LEFTARROW_KEY)) this.brewJump();
if (e.shiftKey && (e.keyCode == RIGHTARROW_KEY)) this.sourceJump();
if ((e.keyCode == LEFTARROW_KEY) || (e.keyCode == RIGHTARROW_KEY)) {
e.stopPropagation();
e.preventDefault();
}