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 5a478ab commit 86c70ceCopy full SHA for 86c70ce
apps/desktop/src-tauri/src/main.rs
@@ -38,6 +38,7 @@ struct Storage {
38
39
#[cfg(target_os = "macos")]
40
fn apply_macos_specifics(app: &mut App, window: &Window) {
41
+ window.set_visisble_on_all_workspaces(true);
42
window.set_transparent_titlebar(true, true);
43
app.set_activation_policy(ActivationPolicy::Accessory);
44
}
@@ -64,9 +65,6 @@ fn main() {
64
65
// NOTE: this might be a bug?
66
window.set_decorations(false);
67
- // allow on all workspaces
68
- window.set_visisble_on_all_workspaces(true);
69
-
70
// add mac things
71
72
apply_macos_specifics(app, &window);
0 commit comments