1
0
Fork 0
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:
SirStendec 2019-04-18 03:16:19 -04:00
parent 00859ac966
commit 6941a85ff6
9 changed files with 100 additions and 36 deletions

View file

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