Fixed incorrect default.
This commit is contained in:
parent
a72e605097
commit
710283a119
1 changed files with 3 additions and 3 deletions
|
@ -129,8 +129,8 @@ const Umi = { UI: {} };
|
|||
settings.define('soundEnableError', 'boolean', true);
|
||||
settings.define('soundEnableServer', 'boolean', true);
|
||||
settings.define('soundEnableIncoming', 'boolean', true);
|
||||
settings.define('onlySoundOnMention', 'boolean', true);
|
||||
settings.define('soundEnableOutgoing', 'boolean', false);
|
||||
settings.define('onlySoundOnMention', 'boolean', false);
|
||||
settings.define('soundEnableOutgoing', 'boolean', true);
|
||||
settings.define('soundEnablePrivate', 'boolean', true);
|
||||
settings.define('soundEnableForceLeave', 'boolean', true);
|
||||
settings.define('minecraft', ['no', 'yes', 'old'], 'no');
|
||||
|
@ -371,7 +371,7 @@ const Umi = { UI: {} };
|
|||
|
||||
sidebarAnimation = MamiAnimate({
|
||||
duration: 500,
|
||||
easing: 'easeOutExpo',
|
||||
easing: 'outExpo',
|
||||
update: update,
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue