tauri-apps / tray-icon

Tray icons for Desktop Applications.
Apache License 2.0
211 stars 29 forks source link

Program crash after closing tray-icon menu without clicking any options #115

Open juance20 opened 7 months ago

juance20 commented 7 months ago

As the title says, when you right-click on a tray-icon the menu pops up as normal, but if you close the menu by clicking anywhere else the program simply crashes, giving the "STATUS_ACCESS_VIOLATION" error. This was made on windows 10 pro 19045.3930. This is my code stating the tray icon, menu and menu item:

let my_menu: Menu = Menu::new();

let _ = my_menu.append(&PredefinedMenuItem::quit(Some("Terminar")));

let _tray_icon: TrayIcon = TrayIconBuilder::new()
    .with_tooltip("Anti-AFK")
    .with_icon(icono)
    .with_menu(Box::new(my_menu))
    .build()
    .unwrap();
amrbashir commented 7 months ago

I can't reproduce at all, could you share your full example?