From fe6be987fdc456a722f360cae4af6845da71e13f Mon Sep 17 00:00:00 2001 From: ruukulada <126130342+ruukulada@users.noreply.github.com> Date: Wed, 30 Aug 2023 18:53:05 -0400 Subject: gameActivityToggle: Fix disabled SVG look (#1696) --- src/plugins/gameActivityToggle/index.tsx | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'src/plugins/gameActivityToggle') diff --git a/src/plugins/gameActivityToggle/index.tsx b/src/plugins/gameActivityToggle/index.tsx index 827bea5..40318c0 100644 --- a/src/plugins/gameActivityToggle/index.tsx +++ b/src/plugins/gameActivityToggle/index.tsx @@ -32,12 +32,18 @@ function makeIcon(showCurrentGame?: boolean) { return function () { return ( - - {!showCurrentGame && } + + {!showCurrentGame && <> + + + + + + } ); }; @@ -60,7 +66,7 @@ function GameActivityToggleButton() { export default definePlugin({ name: "GameActivityToggle", description: "Adds a button next to the mic and deafen button to toggle game activity.", - authors: [Devs.Nuckyz], + authors: [Devs.Nuckyz, Devs.RuukuLada], dependencies: ["SettingsStoreAPI"], patches: [ -- cgit