From 3862a93ff991778af164844392e6ed70719d873f Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 28 Feb 2019 21:47:12 -0500 Subject: [PATCH] Removes mapping of the equals key to break. ... because I keep pressing it by accident. --- Machines/Electron/Keyboard.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Machines/Electron/Keyboard.cpp b/Machines/Electron/Keyboard.cpp index 36d8422ec..5830906b6 100644 --- a/Machines/Electron/Keyboard.cpp +++ b/Machines/Electron/Keyboard.cpp @@ -31,7 +31,6 @@ uint16_t KeyboardMapper::mapped_key_for_key(Inputs::Keyboard::Key key) { BIND(Quote, KeyColon); BIND(Escape, KeyEscape); - BIND(Equals, KeyBreak); BIND(F12, KeyBreak); BIND(Left, KeyLeft); BIND(Right, KeyRight); BIND(Up, KeyUp); BIND(Down, KeyDown);