You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The app crashes when attempting to hide the window using windowManager.hide() after registering a system-wide hotkey with hotkey_manager. The crash occurs specifically when toggling the window visibility with Cmd+T.
The window should toggle visibility smoothly when pressing Cmd+T, showing when hidden and hiding when visible.
Actual Behavior
The app crashes when attempting to hide the window.
Environment
Flutter SDK: ^3.7.2
window_manager: ^0.4.3
hotkey_manager: ^0.2.3
Platform: macOS
Additional Notes
The crash seems to be related to the interaction between hotkey_manager and window_manager when attempting to hide the window. The show and focus operations work correctly, but the hide operation causes the app to crash.
The text was updated successfully, but these errors were encountered:
When I used the two libraries, window_manager and hotkey_manager together, I also encountered the same problem that the program would directly close when I called the hide method.
Description
The app crashes when attempting to hide the window using
windowManager.hide()
after registering a system-wide hotkey withhotkey_manager
. The crash occurs specifically when toggling the window visibility with Cmd+T.Code Snippet
Steps to Reproduce
Expected Behavior
The window should toggle visibility smoothly when pressing Cmd+T, showing when hidden and hiding when visible.
Actual Behavior
The app crashes when attempting to hide the window.
Environment
Additional Notes
The crash seems to be related to the interaction between
hotkey_manager
andwindow_manager
when attempting to hide the window. The show and focus operations work correctly, but the hide operation causes the app to crash.The text was updated successfully, but these errors were encountered: