1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 08:28:31 +00:00

Finish organizing "Hide Features" menu in simple view

This commit is contained in:
Dan Salvato 2024-02-08 19:48:14 -07:00
parent b5777f5a87
commit ce851ab2ad
3 changed files with 12 additions and 12 deletions

View file

@ -423,7 +423,7 @@ export default class ChatHook extends Module {
component: 'setting-check-box',
description: 'Community Highlights are polls, community gift subs, etc. that float over the top of chat temporarily with no way to close them.',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Banners'
}
});
@ -434,7 +434,7 @@ export default class ChatHook extends Module {
title: 'Display a banner at the top of chat when a mass gift sub happens.',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Banners'
}
});
@ -463,7 +463,7 @@ export default class ChatHook extends Module {
title: 'Allow the Hype Train to be displayed in chat.',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Banners'
}
});
@ -493,7 +493,7 @@ export default class ChatHook extends Module {
title: 'Allow Polls to be displayed in chat.',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Interactive'
}
});
@ -504,7 +504,7 @@ export default class ChatHook extends Module {
title: 'Allow Predictions to be displayed in chat.',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Interactive'
}
});
@ -515,7 +515,7 @@ export default class ChatHook extends Module {
title: 'Display the Community Gift Chest banner.',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Banners'
}
});
@ -551,7 +551,7 @@ export default class ChatHook extends Module {
title: 'Display Channel Points button beneath chat.',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Buttons'
}
});
@ -654,7 +654,7 @@ export default class ChatHook extends Module {
description: 'The leaderboard shows the top cheerers and sub gifters in a channel.\n\nBy default due to a previous implementation, this inherits its value from [Chat > Bits and Cheering > Display Bits](~chat.bits_and_cheering).',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Banners'
}
});

View file

@ -80,7 +80,7 @@ export default class Input extends Module {
title: 'Allow the Hype Chat button to appear in the chat input element.',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Buttons'
}
});

View file

@ -394,7 +394,7 @@ export default class CSSTweaks extends Module {
title: 'Display Whispers',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Whispers'
},
changed: val => {
this.toggleHide('whispers', !val);
@ -409,7 +409,7 @@ export default class CSSTweaks extends Module {
title: 'Allow Hype Chat messages to appear pinned at the top of chat.',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Banners'
},
changed: val => this.toggleHide('pinned-hype-chat', ! val)
});
@ -423,7 +423,7 @@ export default class CSSTweaks extends Module {
description: 'Display UI associated with bits. Note: This will not hide cheering in chat messages.',
component: 'setting-check-box',
simple: true,
simple_path: 'Chat > Hide Features'
simple_path: 'Chat > Hide Features >> Buttons'
},
changed: val => this.toggle('hide-bits', !val)
});