adjust hide after timing based on SteamVR status

This commit is contained in:
pa
2025-11-05 17:03:04 +09:00
committed by Natsumi
parent 4f49c961df
commit a9c0df9807

View File

@@ -26,7 +26,7 @@
:key="item.index"
placement="right-start"
trigger="hover"
:hide-after="0"
:hide-after="isSteamVRRunning ? 800 : 0"
:show-arrow="false"
:offset="0"
:width="navPopoverWidth"
@@ -194,6 +194,7 @@
useAdvancedSettingsStore,
useAppearanceSettingsStore,
useAuthStore,
useGameStore,
useSearchStore,
useUiStore,
useVRCXUpdaterStore
@@ -293,6 +294,7 @@
const { logout } = useAuthStore();
const appearanceSettingsStore = useAppearanceSettingsStore();
const { themeMode } = storeToRefs(appearanceSettingsStore);
const { isSteamVRRunning } = storeToRefs(useGameStore());
const settingsMenuVisible = ref(false);
const themeMenuVisible = ref(false);