1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-11 16:40:55 +00:00
* Added: Setting to hide the Turbo button in the Twitch navigation bar. (Closes #1410, #1389)
* Added: Setting to automatically expand chat when entering full-screen. (Closes #1377)
* Changed: The "Change Name & Color" chat action now has buttons to automatically fill in a user's existing name and color. (Closes #1397)
* Fixed: Integration issue with a Twitch chat experiment causing certain features to not work correctly.
* Removed: Old setting to hide a "Discover" link in the navigation bar, as that seems to be long since removed.
This commit is contained in:
SirStendec 2023-09-14 16:48:11 -04:00
parent 92fcc853a6
commit d01f66c6f3
10 changed files with 144 additions and 9 deletions

View file

@ -1392,7 +1392,10 @@ export default class ChatHook extends Module {
inst.props.setMessageBufferAPI({
addUpdateHandler: inst.addUpdateHandler,
removeUpdateHandler: inst.removeUpdateHandler,
getUnreadCount: inst.getUnreadCount,
getMessages: inst.getMessages,
getMessagesForHighlight: inst.getMessagesForHighlight,
getMessagesForAllHighlights: inst.getMessagesForAllHighlights,
isPaused: inst.isPaused,
setPaused: inst.setPaused,
hasNewerLeft: inst.hasNewerLeft,
@ -2307,6 +2310,10 @@ export default class ChatHook extends Module {
this.notifySubscribers();
}
}
if ( this.flushHighlightsBuffer )
this.flushHighlightsBuffer();
} catch(err) {
t.log.error('Error running flush.', err);
return old_flush.call(this);