diff options
| author | shadow <81448108+shdwmtr@users.noreply.github.com> | 2025-06-28 16:45:33 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-28 12:45:33 -0700 |
| commit | 6e357ceecc86d60791eb8b8efcf6d182add36b63 (patch) | |
| tree | 98e85777da359ccf2589184dc89def1bab9f2e04 /frontend/src/plugin-loader.tsx | |
| parent | e4f7546f99e315f4f76d8bcaff2610f34098e43a (diff) | |
| download | decky-loader-6e357ceecc86d60791eb8b8efcf6d182add36b63.tar.gz decky-loader-6e357ceecc86d60791eb8b8efcf6d182add36b63.zip | |
fix(deps): update @decky/ui to version 4.10.2 (#782)
* fix(deps): update @decky/ui to version 4.10.1
* chore(deps): bump @decky/ui 4.8.3 -> 4.10.1
* fix(types): UIMode -> EUIMode
* fix(types): bypass missing type in library.ts
* fix: lint
---------
Co-authored-by: AAGaming <aagaming@riseup.net>
Diffstat (limited to 'frontend/src/plugin-loader.tsx')
| -rw-r--r-- | frontend/src/plugin-loader.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/frontend/src/plugin-loader.tsx b/frontend/src/plugin-loader.tsx index 88e85a48..df0a6956 100644 --- a/frontend/src/plugin-loader.tsx +++ b/frontend/src/plugin-loader.tsx @@ -1,5 +1,6 @@ import { ToastNotification } from '@decky/api'; import { + EUIMode, ModalRoot, Navigation, PanelSection, @@ -30,7 +31,7 @@ import { HiddenPluginsService } from './hidden-plugins-service'; import Logger from './logger'; import { NotificationService } from './notification-service'; import { InstallType, Plugin, PluginLoadType } from './plugin'; -import RouterHook, { UIMode } from './router-hook'; +import RouterHook from './router-hook'; import { deinitSteamFixes, initSteamFixes } from './steamfixes'; import { checkForPluginUpdates } from './store'; import TabsHook from './tabs-hook'; @@ -205,12 +206,12 @@ class PluginLoader extends Logger { let registration: any; const uiMode = await new Promise( (r) => - (registration = SteamClient.UI.RegisterForUIModeChanged((mode: UIMode) => { + (registration = SteamClient.UI.RegisterForUIModeChanged((mode: EUIMode) => { r(mode); registration.unregister(); })), ); - if (uiMode == UIMode.BigPicture) { + if (uiMode == EUIMode.GamePad) { // wait for SP window to exist before loading plugins while (!findSP()) { await sleep(100); |
