How to hide Dock icon to make the browser window completely invisible? #995
Answered
by
FabianLars
CatStudioApp
asked this question in
Q&A
-
let window = WindowBuilder::new()
.with_title("Hello World")
.with_visible(false) seems not working because it only hides the window, but the Dock item on macOS. |
Beta Was this translation helpful? Give feedback.
Answered by
FabianLars
Aug 7, 2023
Replies: 1 comment 2 replies
-
as far as i know on macos this can only be controlled at the application level. There are 2 relevant apis here, set_activation_policy and hide_application. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
CatStudioApp
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
as far as i know on macos this can only be controlled at the application level. There are 2 relevant apis here, set_activation_policy and hide_application.