Toggle notification tray icon dot

This commit is contained in:
Natsumi
2025-12-02 14:46:04 +13:00
parent f552341c31
commit 1e32417e24
4 changed files with 39 additions and 9 deletions

View File

@@ -54,6 +54,13 @@
style="width: 128px"
@change="setZoomLevel" />
</div>
<simple-switch
:label="t('view.settings.appearance.appearance.show_notification_icon_dot')"
:value="notificationIconDot"
@change="
setNotificationIconDot();
saveOpenVROption();
" />
<simple-switch
:label="t('view.settings.appearance.appearance.vrcplus_profile_icons')"
:value="displayVRCPlusIconsAsAvatar"
@@ -391,7 +398,8 @@
hideUserMemos,
hideUnfriends,
randomUserColours,
trustColor
trustColor,
notificationIconDot
} = storeToRefs(appearanceSettingsStore);
const { saveSortFavoritesOption } = useFavoriteStore();
@@ -415,7 +423,8 @@
updateTrustColor,
saveThemeMode,
changeAppLanguage,
promptMaxTableSizeDialog
promptMaxTableSizeDialog,
setNotificationIconDot
} = appearanceSettingsStore;
const zoomLevel = ref(100);