blur only work on windows and mac

This commit is contained in:
Abdenasser 2024-11-11 00:02:33 +01:00
parent 9c7b1f00c4
commit 5460ad3b3b

View File

@ -314,6 +314,12 @@ fn setup_window_effects(window: &tauri::WebviewWindow) -> Result<(), Box<dyn std
Ok(())
}
#[cfg(not(any(target_os = "windows", target_os = "macos")))]
fn setup_window_effects(_window: &tauri::WebviewWindow) -> Result<(), Box<dyn std::error::Error>> {
// No-op for other platforms
Ok(())
}
fn main() {
tauri::Builder::default()
.setup(|app| {