|
@@ -10,14 +10,18 @@ use dioxus::prelude::*;
|
|
|
|
|
|
fn main() {
|
|
fn main() {
|
|
dioxus::desktop::launch_cfg(app, |c| {
|
|
dioxus::desktop::launch_cfg(app, |c| {
|
|
- // we can configure our primary window through the Tauri Config
|
|
|
|
- use dioxus::desktop::tao::platform::macos::*;
|
|
|
|
- c.with_window(|w| {
|
|
|
|
- w.with_fullsize_content_view(true)
|
|
|
|
- .with_titlebar_buttons_hidden(false)
|
|
|
|
- .with_titlebar_transparent(true)
|
|
|
|
- .with_movable_by_window_background(true)
|
|
|
|
- })
|
|
|
|
|
|
+ if cfg!(target_os = "macos") {
|
|
|
|
+ // we can configure our primary window through the Tauri Config
|
|
|
|
+ use dioxus::desktop::tao::platform::macos::*;
|
|
|
|
+ c.with_window(|w| {
|
|
|
|
+ w.with_fullsize_content_view(true)
|
|
|
|
+ .with_titlebar_buttons_hidden(false)
|
|
|
|
+ .with_titlebar_transparent(true)
|
|
|
|
+ .with_movable_by_window_background(true)
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ c
|
|
|
|
+ }
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|