feat: use shadow dom on theme editor for achievement notifications

This commit is contained in:
Zamitto
2025-05-18 21:28:45 -03:00
parent 650b02e673
commit 73de69b5a6
3 changed files with 43 additions and 16 deletions

View File

@@ -395,7 +395,16 @@ export class WindowManager {
this.notificationWindow?.webContents.send(
"on-achievement-unlocked",
userPreferences.achievementCustomNotificationPosition ?? "top-left",
[generateAchievementCustomNotificationTest(t, language)]
[
generateAchievementCustomNotificationTest(t, language),
generateAchievementCustomNotificationTest(t, language, {
isRare: true,
isHidden: true,
}),
generateAchievementCustomNotificationTest(t, language, {
isPlatinum: true,
}),
]
);
}