summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-18 12:50:42 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-18 12:50:42 -0400
commit687d017c02d5a7dc37fde941c583ff74d8dd6363 (patch)
tree91c2f9498c94411891f24bb1b934de0b1984be0d /src
parentb3dc324137444753131eccfcbd86ab82fbd1d972 (diff)
downloaddecky-lsfg-vk-687d017c02d5a7dc37fde941c583ff74d8dd6363.tar.gz
decky-lsfg-vk-687d017c02d5a7dc37fde941c583ff74d8dd6363.zip
visibility for profile lock indicator, ver bump
Diffstat (limited to 'src')
-rw-r--r--src/components/ProfileManagement.tsx30
1 files changed, 15 insertions, 15 deletions
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=""