We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f84d257 commit eb722feCopy full SHA for eb722fe
apps/desktop/src-tauri/src/main.rs
@@ -33,9 +33,12 @@ pub struct Storage {
33
}
34
35
#[cfg(target_os = "macos")]
36
-fn apply_macos_specifics(_app: &mut App, window: &Window) {
+fn apply_macos_specifics(app: &mut App, window: &Window) {
37
window.set_visisble_on_all_workspaces(true);
38
window.set_transparent_titlebar(true, true);
39
+
40
+ // allow to show in fullscreen apps
41
+ app.set_activation_policy(tauri::ActivationPolicy::Accessory);
42
43
44
fn main() {
0 commit comments