mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-07 06:40:54 +00:00
4.21.4
* Added: Option for controlling styles applied to action (`/me`) messages in chat.
This commit is contained in:
parent
7d040066c4
commit
e7803c7db1
4 changed files with 34 additions and 6 deletions
|
@ -933,6 +933,23 @@ export default class Chat extends Module {
|
|||
}
|
||||
});
|
||||
|
||||
this.settings.add('chat.me-style', {
|
||||
default: 2,
|
||||
ui: {
|
||||
path: 'Chat > Appearance >> Chat Lines',
|
||||
title: 'Action Style',
|
||||
description: 'When someone uses `/me`, the message will be rendered in this style.',
|
||||
component: 'setting-select-box',
|
||||
|
||||
data: [
|
||||
{value: 0, title: 'No Style'},
|
||||
{value: 1, title: 'Colorized (Old Style)'},
|
||||
{value: 2, title: 'Italic (New Style)'},
|
||||
{value: 3, title: 'Colorized Italic'}
|
||||
]
|
||||
}
|
||||
});
|
||||
|
||||
this.settings.add('chat.bits.stack', {
|
||||
default: 0,
|
||||
ui: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue