mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
adjust hide after timing based on SteamVR status
This commit is contained in:
@@ -26,7 +26,7 @@
|
|||||||
:key="item.index"
|
:key="item.index"
|
||||||
placement="right-start"
|
placement="right-start"
|
||||||
trigger="hover"
|
trigger="hover"
|
||||||
:hide-after="0"
|
:hide-after="isSteamVRRunning ? 800 : 0"
|
||||||
:show-arrow="false"
|
:show-arrow="false"
|
||||||
:offset="0"
|
:offset="0"
|
||||||
:width="navPopoverWidth"
|
:width="navPopoverWidth"
|
||||||
@@ -194,6 +194,7 @@
|
|||||||
useAdvancedSettingsStore,
|
useAdvancedSettingsStore,
|
||||||
useAppearanceSettingsStore,
|
useAppearanceSettingsStore,
|
||||||
useAuthStore,
|
useAuthStore,
|
||||||
|
useGameStore,
|
||||||
useSearchStore,
|
useSearchStore,
|
||||||
useUiStore,
|
useUiStore,
|
||||||
useVRCXUpdaterStore
|
useVRCXUpdaterStore
|
||||||
@@ -293,6 +294,7 @@
|
|||||||
const { logout } = useAuthStore();
|
const { logout } = useAuthStore();
|
||||||
const appearanceSettingsStore = useAppearanceSettingsStore();
|
const appearanceSettingsStore = useAppearanceSettingsStore();
|
||||||
const { themeMode } = storeToRefs(appearanceSettingsStore);
|
const { themeMode } = storeToRefs(appearanceSettingsStore);
|
||||||
|
const { isSteamVRRunning } = storeToRefs(useGameStore());
|
||||||
|
|
||||||
const settingsMenuVisible = ref(false);
|
const settingsMenuVisible = ref(false);
|
||||||
const themeMenuVisible = ref(false);
|
const themeMenuVisible = ref(false);
|
||||||
|
|||||||
Reference in New Issue
Block a user