mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-03 05:26:05 +02:00
Fix nav dot icon
This commit is contained in:
@@ -979,7 +979,7 @@ export const useFriendStore = defineStore('Friend', () => {
|
||||
};
|
||||
friendLog.set(id, friendLogCurrent);
|
||||
database.setFriendLogCurrent(friendLogCurrent);
|
||||
uiStore.notifyMenu('friendLog');
|
||||
uiStore.notifyMenu('friend-log');
|
||||
deleteFriendRequest(id);
|
||||
sharedFeedStore.updateSharedFeed(true);
|
||||
userRequest
|
||||
@@ -1048,7 +1048,7 @@ export const useFriendStore = defineStore('Friend', () => {
|
||||
friendLog.delete(id);
|
||||
database.deleteFriendLogCurrent(id);
|
||||
if (!appearanceSettingsStore.hideUnfriends) {
|
||||
uiStore.notifyMenu('friendLog');
|
||||
uiStore.notifyMenu('friend-log');
|
||||
}
|
||||
sharedFeedStore.updateSharedFeed(true);
|
||||
deleteFriend(id);
|
||||
@@ -1116,7 +1116,7 @@ export const useFriendStore = defineStore('Friend', () => {
|
||||
friendLog.set(ref.id, friendLogCurrent);
|
||||
database.setFriendLogCurrent(friendLogCurrent);
|
||||
ctx.displayName = ref.displayName;
|
||||
uiStore.notifyMenu('friendLog');
|
||||
uiStore.notifyMenu('friend-log');
|
||||
sharedFeedStore.updateSharedFeed(true);
|
||||
}
|
||||
}
|
||||
@@ -1161,7 +1161,7 @@ export const useFriendStore = defineStore('Friend', () => {
|
||||
};
|
||||
friendLog.set(ref.id, friendLogCurrent2);
|
||||
database.setFriendLogCurrent(friendLogCurrent2);
|
||||
uiStore.notifyMenu('friendLog');
|
||||
uiStore.notifyMenu('friend-log');
|
||||
sharedFeedStore.updateSharedFeed(true);
|
||||
}
|
||||
ctx.trustLevel = ref.$trustLevel;
|
||||
|
||||
@@ -398,7 +398,7 @@ export const useGameLogStore = defineStore('GameLog', () => {
|
||||
}
|
||||
gameLogTable.value.data.push(entry);
|
||||
sweepGameLog();
|
||||
uiStore.notifyMenu('gameLog');
|
||||
uiStore.notifyMenu('game-log');
|
||||
}
|
||||
|
||||
async function addGamelogLocationToDatabase(input) {
|
||||
|
||||
+1
-1
@@ -66,7 +66,7 @@ export const useUiStore = defineStore('Ui', () => {
|
||||
function updateTrayIconNotify(force = false) {
|
||||
const newState =
|
||||
notifiedMenus.value.includes('notification') ||
|
||||
notifiedMenus.value.includes('friendLog');
|
||||
notifiedMenus.value.includes('friend-log');
|
||||
|
||||
if (trayIconNotify.value !== newState || force) {
|
||||
trayIconNotify.value = newState;
|
||||
|
||||
Reference in New Issue
Block a user