From 61f2216c25789513c4edf5506310e109fa600921 Mon Sep 17 00:00:00 2001 From: Luke Jones Date: Sun, 6 Apr 2025 01:03:11 +1300 Subject: [PATCH] fix: minor clippy fix --- rog-control-center/src/ui/setup_fans.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rog-control-center/src/ui/setup_fans.rs b/rog-control-center/src/ui/setup_fans.rs index 4ff607fe..75a73978 100644 --- a/rog-control-center/src/ui/setup_fans.rs +++ b/rog-control-center/src/ui/setup_fans.rs @@ -156,7 +156,7 @@ pub fn setup_fan_curve_page(ui: &MainWindow, _config: Arc>) { let profile = if platform_profile_choices.contains(&PlatformProfile::Quiet) { PlatformProfile::Quiet } else { - PlatformProfile::Quiet + PlatformProfile::LowPower }; let quiet = match fans.fan_curve_data(profile).await { Ok(data) => data,