diff --git a/src/Keyboard.js b/src/Keyboard.js
index 8e6983fae5..bf83a1a05f 100644
--- a/src/Keyboard.js
+++ b/src/Keyboard.js
@@ -69,11 +69,11 @@ export function isOnlyCtrlOrCmdKeyEvent(ev) {
     }
 }
 
-export function isCtrlOrCmdKeyEvent(ev) {
+export function isOnlyCtrlOrCmdIgnoreShiftKeyEvent(ev) {
     const isMac = navigator.platform.toUpperCase().indexOf('MAC') >= 0;
     if (isMac) {
-        return ev.metaKey && !ev.ctrlKey;
+        return ev.metaKey && !ev.altKey && !ev.ctrlKey;
     } else {
-        return ev.ctrlKey && !ev.metaKey;
+        return ev.ctrlKey && !ev.altKey && !ev.metaKey;
     }
 }
diff --git a/src/components/structures/LoggedInView.js b/src/components/structures/LoggedInView.js
index 38b7634edb..6f40aa559a 100644
--- a/src/components/structures/LoggedInView.js
+++ b/src/components/structures/LoggedInView.js
@@ -333,7 +333,6 @@ const LoggedInView = React.createClass({
                 
                     { SettingsStore.isFeatureEnabled("feature_tag_panel") ? 
 : 
 }
                     
diff --git a/src/components/structures/UserSettings.js b/src/components/structures/UserSettings.js
index 09844c3d63..087b96c509 100644
--- a/src/components/structures/UserSettings.js
+++ b/src/components/structures/UserSettings.js
@@ -375,7 +375,7 @@ module.exports = React.createClass({
              { _t("For security, logging out will delete any end-to-end " +
                   "encryption keys from this browser. If you want to be able " +
                   "to decrypt your conversation history from future Riot sessions, " +
-                  "please export your room keys for safe-keeping.") }.
+                  "please export your room keys for safe-keeping.") }