From d0db7caa388fe0111ccf04c9eda053cd779776d9 Mon Sep 17 00:00:00 2001 From: Shawn Date: Thu, 27 Oct 2022 10:22:43 -0600 Subject: [PATCH] Adjust padding on locale btn --- lib/ui/common/controls/locale_switcher.dart | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/ui/common/controls/locale_switcher.dart b/lib/ui/common/controls/locale_switcher.dart index 1e206fa7..9db2beef 100644 --- a/lib/ui/common/controls/locale_switcher.dart +++ b/lib/ui/common/controls/locale_switcher.dart @@ -11,9 +11,6 @@ class LocaleSwitcher extends StatelessWidget with GetItMixin { await settingsLogic.changeLocale(newLocale); } - return AppBtn.from( - padding: EdgeInsets.symmetric(vertical: $styles.insets.sm, horizontal: $styles.insets.sm), - text: $strings.localeSwapButton, - onPressed: handleSwapLocale); + return AppBtn.from(text: $strings.localeSwapButton, onPressed: handleSwapLocale); } }