mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-09-17 10:16:57 +00:00
4.0.0-rc16.2
* Fixed: Add initial support for Twitch's new message moderation display styles. * Fixed: Tooltips in pop-out chat not appearing correctly. * Fixed: Opening the FFZ Control Center from pop-out chat. * Fixed: Chat not appearing if a window is too thin with Portrait Mode enabled.
This commit is contained in:
parent
00859ac966
commit
6941a85ff6
9 changed files with 100 additions and 36 deletions
|
@ -181,16 +181,6 @@ export default class Chat extends Module {
|
|||
}
|
||||
});
|
||||
|
||||
this.settings.add('chat.filtering.show-deleted', {
|
||||
default: false,
|
||||
ui: {
|
||||
path: 'Chat > Behavior >> Deleted Messages',
|
||||
title: 'Always display deleted messages.',
|
||||
description: 'Deleted messages will be displayed differently for differentiation, but never hidden behind <message deleted>.',
|
||||
component: 'setting-check-box'
|
||||
}
|
||||
});
|
||||
|
||||
this.settings.add('chat.filtering.deleted-style', {
|
||||
default: 1,
|
||||
ui: {
|
||||
|
@ -199,7 +189,9 @@ export default class Chat extends Module {
|
|||
component: 'setting-select-box',
|
||||
data: [
|
||||
{value: 0, title: 'Faded'},
|
||||
{value: 1, title: 'Faded, Line Through'}
|
||||
{value: 1, title: 'Faded, Line Through'},
|
||||
{value: 2, title: 'Line Through'},
|
||||
{value: 3, title: 'No Change'}
|
||||
]
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue