From 405be7ef138bc9cbbb9e6d19139ea0c0b9c672f7 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Mon, 3 Apr 2023 03:13:54 +0200 Subject: [PATCH] Fix weird style on username sheet --- src/plugins/gameActivityToggle/index.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/plugins/gameActivityToggle/index.tsx b/src/plugins/gameActivityToggle/index.tsx index 1617e9cf..6926505b 100644 --- a/src/plugins/gameActivityToggle/index.tsx +++ b/src/plugins/gameActivityToggle/index.tsx @@ -16,14 +16,15 @@ * along with this program. If not, see . */ -import "./style.css"; - import { getSettingStoreLazy } from "@api/SettingsStore"; +import { disableStyle, enableStyle } from "@api/Styles"; import ErrorBoundary from "@components/ErrorBoundary"; import { Devs } from "@utils/constants"; import definePlugin from "@utils/types"; import { Tooltip } from "@webpack/common"; +import style from "./style.css?managed"; + const ShowCurrentGame = getSettingStoreLazy("status", "showCurrentGame"); function GameActivityToggleButton() { @@ -69,5 +70,13 @@ export default definePlugin({ } ], - GameActivityToggleButton: ErrorBoundary.wrap(GameActivityToggleButton, { noop: true }) + GameActivityToggleButton: ErrorBoundary.wrap(GameActivityToggleButton, { noop: true }), + + start() { + enableStyle(style); + }, + + stop() { + disableStyle(style); + } });