-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Updating menu_handle title from within on_menu_event causes death spiral #5254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
can you try with #5245 there was a deadlock I fixed. in [build-dependencies]
tauri-build = { git = "https://github.com/tauri-apps/tauri", branch = "fix-tray-cleanup" }
[dependencies]
tauri = { git = "https://github.com/tauri-apps/tauri", branch = "fix-tray-cleanup" } after that run |
Hey @amrbashir. No change unfortunately. |
amrbashir
added a commit
that referenced
this issue
Sep 21, 2022
try with #5257 instead [build-dependencies]
tauri-build = { git = "https://github.com/tauri-apps/tauri", branch = "menu-deadlock" }
[dependencies]
tauri = { git = "https://github.com/tauri-apps/tauri", branch = "menu-deadlock" } don't forget to run |
@amrbashir I can confirm your |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have the following code in my Tauri application:
and the last
let
statement seems to throw my application into aNot Responding
state.Interestingly, the Webview part of the app continues to load successfully.
The end goal is to have a kind of "checkbox" menu item, where I insert a ✔️ into the menu item depending on the current "always on top" state.
Tauri 1.1.0, Windows 10.
The text was updated successfully, but these errors were encountered: