From 9d8b279b0b6c53164b97087e36ce9a385740186c Mon Sep 17 00:00:00 2001 From: Vini Gupta Date: Thu, 30 Jan 2025 10:42:53 -0800 Subject: [PATCH] Rename E-menu Actions submenu to Diagnostics Summary: To improve the user experience and make it more intuitive for users to find Eden diagnostics tools, we propose renaming the "Actions" section to "Diagnostics". Reviewed By: jdelliot Differential Revision: D68880703 fbshipit-source-id: 33716c1faa2ccd63309237bbb6337015dc7a23a0 --- eden/fs/notifications/WindowsNotifier.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eden/fs/notifications/WindowsNotifier.cpp b/eden/fs/notifications/WindowsNotifier.cpp index 366ef1f36cb6c..b6e37ce017360 100644 --- a/eden/fs/notifications/WindowsNotifier.cpp +++ b/eden/fs/notifications/WindowsNotifier.cpp @@ -812,7 +812,7 @@ void WindowsNotifier::appendActionsMenu(HMENU hMenu) { hMenu, MF_BYPOSITION | MF_POPUP, reinterpret_cast(actionMenu.get()), - L"Actions"); + L"Diagnostics"); } MenuHandle WindowsNotifier::createEdenMenu() { @@ -826,8 +826,8 @@ MenuHandle WindowsNotifier::createEdenMenu() { appendInodePopulationReportMenu(hMenu.get()); appendMenuEntry( hMenu.get(), MF_BYPOSITION | MF_STRING, IDM_INFO, kMenuAboutStr); - appendOptionsMenu(hMenu.get()); appendActionsMenu(hMenu.get()); + appendOptionsMenu(hMenu.get()); if (debugIsEnabled()) { appendDebugMenu(hMenu.get()); }