mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-04 09:46:43 +00:00
blur only work on windows and mac
This commit is contained in:
parent
9c7b1f00c4
commit
5460ad3b3b
@ -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| {
|
||||
|
Loading…
x
Reference in New Issue
Block a user