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:
parent
ffd5eae774
commit
a58810e177
3 changed files with 3 additions and 3 deletions
|
@ -30,8 +30,6 @@ FFZ.settings_info.fix_color = {
|
||||||
},
|
},
|
||||||
value: '1',
|
value: '1',
|
||||||
|
|
||||||
visible: function() { return localStorage.hasOwnProperty("ffz_setting_fix_color") },
|
|
||||||
|
|
||||||
category: "Chat Appearance",
|
category: "Chat Appearance",
|
||||||
no_bttv: true,
|
no_bttv: true,
|
||||||
|
|
||||||
|
|
|
@ -958,6 +958,8 @@ FFZ.prototype._modify_chat_input = function(component) {
|
||||||
if ( e.shiftKey || e.shiftLeft )
|
if ( e.shiftKey || e.shiftLeft )
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
this.set('ffz_mru_index', -1);
|
||||||
|
|
||||||
if ( this.get('ffz_suggestions_visible') )
|
if ( this.get('ffz_suggestions_visible') )
|
||||||
this.ffzCompleteSuggestion();
|
this.ffzCompleteSuggestion();
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -35,7 +35,7 @@ FFZ.msg_commands = {};
|
||||||
|
|
||||||
// Version
|
// Version
|
||||||
var VER = FFZ.version_info = {
|
var VER = FFZ.version_info = {
|
||||||
major: 3, minor: 5, revision: 150,
|
major: 3, minor: 5, revision: 151,
|
||||||
toString: function() {
|
toString: function() {
|
||||||
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
|
return [VER.major, VER.minor, VER.revision].join(".") + (VER.extra || "");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue