From b66a68a37bf2fb755ebb8e2dd2d18f5ecfcecda5 Mon Sep 17 00:00:00 2001 From: zaccie Date: Wed, 22 May 2024 18:23:40 +1200 Subject: [PATCH] Drop Shadow Fixes On Team Builder Screen (#1220) * Drop Shadow Adjustments Adding support for x,y axis on dropshadow and adjusting the values to be less bad * Further Refined New Shadow Positons - Reverted MOVE_INFO_CONTENT to the old default - Slight adjustments to other values * Fixed Broken Drop Shadows Fixed a case where the dropshadow became worse --------- Co-authored-by: Benjamin Odom --- src/ui/text.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/text.ts b/src/ui/text.ts index 31c76c72956..0021fd22b64 100644 --- a/src/ui/text.ts +++ b/src/ui/text.ts @@ -109,6 +109,8 @@ function getTextStyleOptions(style: TextStyle, uiTheme: UiTheme, extraStyleOptio case TextStyle.SUMMARY_GREEN: case TextStyle.WINDOW: case TextStyle.WINDOW_ALT: + shadowXpos = 3; + shadowYpos = 3; case TextStyle.MESSAGE: case TextStyle.SETTINGS_LABEL: case TextStyle.SETTINGS_SELECTED: