ahkohd / tauri-macos-spotlight-example

An example macOS Spotlight app built with Tauri
MIT License
133 stars 8 forks source link

How to prevent the NSPanel from being hidden when the focus leaves the NSPanel window? #9

Closed zhouyangtingwen closed 1 year ago

zhouyangtingwen commented 1 year ago

Now, when the focus leaves the NSPanel window, the NSPanel window will be hidden. How to prevent the NSPanel from being hidden when the focus leaves the NSPanel window? @ahkohd

ahkohd commented 1 year ago

Hello @zhouyangtingwen,

Comment out lines (384 to 385) to prevent the panel from hiding. https://github.com/ahkohd/tauri-macos-spotlight-example/blob/c5507f5e28c6ac1a1e9bca3e28897efe63e2c37a/src-tauri/src/spotlight.rs#L385

zhouyangtingwen commented 1 year ago

Hello @zhouyangtingwen,

Comment out lines (384 to 385) to prevent the panel from hiding.

https://github.com/ahkohd/tauri-macos-spotlight-example/blob/c5507f5e28c6ac1a1e9bca3e28897efe63e2c37a/src-tauri/src/spotlight.rs#L385

thank you so much @ahkohd