From e89f28299664a96953c62c1b5ae0f640b35c59af Mon Sep 17 00:00:00 2001 From: Vladimir Borisov Date: Tue, 3 Aug 2021 14:57:19 +0300 Subject: [PATCH] Tray menu items same as in old shell --- src/stremio_app/systray.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stremio_app/systray.rs b/src/stremio_app/systray.rs index 4f4cdfb..8063fac 100644 --- a/src/stremio_app/systray.rs +++ b/src/stremio_app/systray.rs @@ -12,11 +12,11 @@ pub struct SystemTray { pub tray: nwg::TrayNotification, #[nwg_control(popup: true)] pub tray_menu: nwg::Menu, - #[nwg_control(parent: tray_menu, text: "&Show Window")] + #[nwg_control(parent: tray_menu, text: "&Show window")] pub tray_show_hide: nwg::MenuItem, - #[nwg_control(parent: tray_menu, text: "Always on &Top")] + #[nwg_control(parent: tray_menu, text: "Always on &top")] pub tray_topmost: nwg::MenuItem, - #[nwg_control(parent: tray_menu, text: "E&xit")] + #[nwg_control(parent: tray_menu, text: "&Quit")] pub tray_exit: nwg::MenuItem, }