mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-26 04:28:31 +00:00
4.0.0-rc21.6
* Added: Setting to remove rounding applied to avatars. * Fixed: New settings not being marked as seen when you see them. * Fixed: Position of the FFZ Control Center icon in the navigation bar. * Fixed: Position of the Whisper button when in theater mode with a custom Chat Width. * Fixed: Hiding Recommended Channels from the Following Directory. * Fixed: Rendering of badges in slot zero.
This commit is contained in:
parent
f4557cd31b
commit
f754b7fce7
8 changed files with 40 additions and 21 deletions
|
@ -642,16 +642,15 @@ export default class MainMenu extends Module {
|
|||
|
||||
}
|
||||
|
||||
if ( ! item.setting )
|
||||
return;
|
||||
if ( item.setting ) {
|
||||
if ( ! seen.includes(item.setting) ) {
|
||||
seen.push(item.setting);
|
||||
|
||||
if ( ! seen.includes(item.setting) ) {
|
||||
seen.push(item.setting);
|
||||
|
||||
let i = item.parent;
|
||||
while(i) {
|
||||
i.unseen = (i.unseen || 1) - 1;
|
||||
i = i.parent;
|
||||
let i = item.parent;
|
||||
while(i) {
|
||||
i.unseen = (i.unseen || 1) - 1;
|
||||
i = i.parent;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue