1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-03 17:48:30 +00:00

3.5.151. Fix MRU behavior in chat input.

This commit is contained in:
SirStendec 2016-03-30 12:42:51 -04:00
parent ffd5eae774
commit a58810e177
3 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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 {

View file

@ -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 || "");
}