From dcdc8b4943ac663670f111213e637e5fee2f7047 Mon Sep 17 00:00:00 2001 From: David Bolack Date: Tue, 30 Jul 2024 02:41:03 -0500 Subject: [PATCH] Remove Livescrolling toggle hot-key. --- client/homebrew/editor/editor.jsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/client/homebrew/editor/editor.jsx b/client/homebrew/editor/editor.jsx index f1ed28440..603dbd6f3 100644 --- a/client/homebrew/editor/editor.jsx +++ b/client/homebrew/editor/editor.jsx @@ -123,12 +123,6 @@ const Editor = createClass({ const X_KEY = 88; const END_KEY = 35; const HOME_KEY = 36; - const SCROLLLOCK_KEY = 145; - - // Toggle Live-scrolling on Scroll Lock - if(e.keyCode == SCROLLLOCK_KEY) { - this.setState( {liveScroll: !this.props.liveScroll} ); - } if(!(e.ctrlKey || e.metaKey)) return;