diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-08-18 12:50:42 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-08-18 12:50:42 -0400 |
| commit | 687d017c02d5a7dc37fde941c583ff74d8dd6363 (patch) | |
| tree | 91c2f9498c94411891f24bb1b934de0b1984be0d | |
| parent | b3dc324137444753131eccfcbd86ab82fbd1d972 (diff) | |
| download | decky-lsfg-vk-687d017c02d5a7dc37fde941c583ff74d8dd6363.tar.gz decky-lsfg-vk-687d017c02d5a7dc37fde941c583ff74d8dd6363.zip | |
visibility for profile lock indicator, ver bump
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | src/components/ProfileManagement.tsx | 30 |
2 files changed, 16 insertions, 16 deletions
diff --git a/package.json b/package.json index 7fcd3bd..bcc9af4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "decky-lossless-scaling-vk", - "version": "0.10.2", + "version": "0.10.3", "description": "Use Lossless Scaling on the Steam Deck using the lsfg-vk vulkan layer", "type": "module", "scripts": { diff --git a/src/components/ProfileManagement.tsx b/src/components/ProfileManagement.tsx index 7c8966b..6e2a8f8 100644 --- a/src/components/ProfileManagement.tsx +++ b/src/components/ProfileManagement.tsx @@ -347,6 +347,21 @@ export function ProfileManagement({ currentProfile, onProfileChange }: ProfileMa `} </style> + {/* Display currently running game info - always visible */} + {mainRunningApp && ( + <PanelSectionRow> + <div style={{ + padding: "8px 12px", + backgroundColor: "rgba(0, 255, 0, 0.1)", + borderRadius: "4px", + border: "1px solid rgba(0, 255, 0, 0.3)", + fontSize: "13px" + }}> + <strong>{mainRunningApp.display_name}</strong> running. Close game to change profile. + </div> + </PanelSectionRow> + )} + <PanelSectionRow> <div style={{ @@ -385,21 +400,6 @@ export function ProfileManagement({ currentProfile, onProfileChange }: ProfileMa {!profilesCollapsed && ( <> - {/* Display currently running game info */} - {mainRunningApp && ( - <PanelSectionRow> - <div style={{ - padding: "8px 12px", - backgroundColor: "rgba(0, 255, 0, 0.1)", - borderRadius: "4px", - border: "1px solid rgba(0, 255, 0, 0.3)", - fontSize: "13px" - }}> - <strong>{mainRunningApp.display_name}</strong> running. Close game to change profile. - </div> - </PanelSectionRow> - )} - <PanelSectionRow> <Field label="" |
