summaryrefslogtreecommitdiff
path: root/frontend/src/components
diff options
context:
space:
mode:
authorAAGaming <aa@mail.catvibers.me>2022-10-14 23:43:45 -0400
committerAAGaming <aa@mail.catvibers.me>2022-10-14 23:43:45 -0400
commit739b57e100c313cf12c7c9b77c171c72cfb1a77a (patch)
treebe234ec18fdcb02f9fa41553d2f43da38f46730f /frontend/src/components
parent87a7361dc76949325421d9579e1e1813e84dcc1e (diff)
downloaddecky-loader-739b57e100c313cf12c7c9b77c171c72cfb1a77a.tar.gz
decky-loader-739b57e100c313cf12c7c9b77c171c72cfb1a77a.zip
add alwaysRender
Diffstat (limited to 'frontend/src/components')
-rw-r--r--frontend/src/components/PluginView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx
index 2ae0b555..630cc962 100644
--- a/frontend/src/components/PluginView.tsx
+++ b/frontend/src/components/PluginView.tsx
@@ -26,7 +26,7 @@ const PluginView: VFC = () => {
className={joinClassNames(staticClasses.TabGroupPanel, scrollClasses.ScrollPanel, scrollClasses.ScrollY)}
style={{ height: '100%' }}
>
- {visible && activePlugin.content}
+ {(visible || activePlugin.alwaysRender) && activePlugin.content}
</div>
</Focusable>
);