mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-30 14:38:31 +00:00
4.0.0-rc11
* Added "Chat > Behavior > Deleted Message Style" setting to customize how deleted messages appear when set to always be visible. * Added "Chat > Filtering > Filter your own messages." setting to control whether or not your own chat messages are filtered. Defaults to disabled. * Fixed: Channel Hosting, via better detection of new vs old channel component style.
This commit is contained in:
parent
25069e1298
commit
089bc6d715
9 changed files with 54 additions and 18 deletions
|
@ -372,6 +372,11 @@ export default class ChatHook extends Module {
|
|||
this.chat.context.on('changed:chat.bits.show-pinned', val =>
|
||||
this.css_tweaks.toggleHide('pinned-cheer', !val));
|
||||
|
||||
this.chat.context.on('changed:chat.filtering.deleted-style', val =>
|
||||
this.css_tweaks.toggle('chat-deleted-strike', val === 1))
|
||||
|
||||
this.css_tweaks.toggle('chat-deleted-strike', this.chat.context.get('chat.filtering.deleted-style') === 1);
|
||||
|
||||
this.css_tweaks.toggleHide('pinned-cheer', !this.chat.context.get('chat.bits.show-pinned'));
|
||||
this.css_tweaks.toggle('hide-bits', !this.chat.context.get('chat.bits.show'));
|
||||
this.css_tweaks.toggle('chat-rows', this.chat.context.get('chat.lines.alternate'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue