From 260bc29c9a09e3dfe4aa92e6f94826c6697459e9 Mon Sep 17 00:00:00 2001 From: Amanda Ghassaei <amandaghassaei@gmail.com> Date: Fri, 27 Mar 2015 01:32:56 -0400 Subject: [PATCH] shift key weirdness --- js/models/AppState.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/models/AppState.js b/js/models/AppState.js index 51c8299b..f044525c 100644 --- a/js/models/AppState.js +++ b/js/models/AppState.js @@ -228,6 +228,8 @@ AppState = Backbone.Model.extend({ var state = e.data.state; var currentTab = this.get("currentTab"); + this.set("shift", false);//just in case, this is getting all weird during other meta commands in the browser + if (e.ctrlKey || e.metaKey){ }else if (state) { if (this.downKeys[e.keyCode]) return; -- GitLab