diff --git a/src/colors.js b/src/colors.js index e26500d2..4d379204 100644 --- a/src/colors.js +++ b/src/colors.js @@ -30,8 +30,6 @@ FFZ.settings_info.fix_color = { }, value: '1', - visible: function() { return localStorage.hasOwnProperty("ffz_setting_fix_color") }, - category: "Chat Appearance", no_bttv: true, diff --git a/src/ember/chat-input.js b/src/ember/chat-input.js index 41f16edc..6d71caec 100644 --- a/src/ember/chat-input.js +++ b/src/ember/chat-input.js @@ -958,6 +958,8 @@ FFZ.prototype._modify_chat_input = function(component) { if ( e.shiftKey || e.shiftLeft ) break; + this.set('ffz_mru_index', -1); + if ( this.get('ffz_suggestions_visible') ) this.ffzCompleteSuggestion(); else { diff --git a/src/main.js b/src/main.js index 603b9627..81f0f253 100644 --- a/src/main.js +++ b/src/main.js @@ -35,7 +35,7 @@ FFZ.msg_commands = {}; // Version var VER = FFZ.version_info = { - major: 3, minor: 5, revision: 150, + major: 3, minor: 5, revision: 151, toString: function() { return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || ""); }