From 5abdc2210285ad9deb255d861203591cd9377190 Mon Sep 17 00:00:00 2001 From: Shawn Date: Thu, 5 Jan 2023 12:20:46 -0700 Subject: [PATCH] Reduce blur slightly --- lib/ui/common/app_backdrop.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/common/app_backdrop.dart b/lib/ui/common/app_backdrop.dart index 4bf0edea..4b3e5e5c 100644 --- a/lib/ui/common/app_backdrop.dart +++ b/lib/ui/common/app_backdrop.dart @@ -18,7 +18,7 @@ class AppBackdrop extends StatelessWidget { final double normalStrength = clampDouble(strength, 0, 1); if (settingsLogic.useBlurs) { return BackdropFilter( - filter: ImageFilter.blur(sigmaX: normalStrength * 15.0, sigmaY: normalStrength * 15.0), + filter: ImageFilter.blur(sigmaX: normalStrength * 10, sigmaY: normalStrength * 10), child: child ?? SizedBox.expand(), ); }