1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-31 15:08:31 +00:00
* Fixed: Playback statistics not appearing when experiencing a specific player experiment.
* Fixed: Layout issues when viewing a Watch Party with certain features enabled. Note that currently we aren't properly supporting Watch Parties due to the oddly extensive changes they make to the layout. Instead, we just disable certain features when a Watch Party is detected. This may change in the future. Closes #906. Closes #898.
* Fixed: Issue with incorrect profile priorities being followed when highlighting badges. Closes #908.
* Fixed: Issue with sending whisper messages sometimes breaking whisper UI. Closes #904
* Fixed: Chat font size overrides not working in a specific situation.
* Fixed: Incorrect tool-tips for emotes with modifiers.
This commit is contained in:
SirStendec 2020-09-29 14:15:43 -04:00
parent 472f9472ee
commit 64f7a513a8
10 changed files with 68 additions and 36 deletions

View file

@ -92,8 +92,11 @@ export default class CSSTweaks extends Module {
});
this.settings.add('layout.use-chat-fix', {
requires: ['context.force_chat_fix', 'layout.swap-sidebars', 'layout.use-portrait', 'chat.use-width'],
requires: ['context.force_chat_fix', 'layout.swap-sidebars', 'layout.use-portrait', 'chat.use-width', 'context.isWatchParty'],
process(ctx) {
if ( ctx.get('context.isWatchParty') )
return false;
return ctx.get('context.force_chat_fix') || ctx.get('layout.swap-sidebars') || ctx.get('layout.use-portrait') || ctx.get('chat.use-width')
},
changed: val => {
@ -223,6 +226,10 @@ export default class CSSTweaks extends Module {
this.settings.add('layout.swap-sidebars', {
default: false,
requires: ['context.isWatchParty'],
process(ctx, val) {
return ctx.get('context.isWatchParty') ? false : val;
},
ui: {
path: 'Appearance > Layout >> Side Navigation',
title: 'Swap Sidebars',