Skip to content

Commit

Permalink
Rename E-menu Actions submenu to Diagnostics
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ViniGupta08 authored and facebook-github-bot committed Jan 30, 2025
1 parent 87d3955 commit 9d8b279
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eden/fs/notifications/WindowsNotifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ void WindowsNotifier::appendActionsMenu(HMENU hMenu) {
hMenu,
MF_BYPOSITION | MF_POPUP,
reinterpret_cast<UINT_PTR>(actionMenu.get()),
L"Actions");
L"Diagnostics");
}

MenuHandle WindowsNotifier::createEdenMenu() {
Expand All @@ -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());
}
Expand Down

0 comments on commit 9d8b279

Please sign in to comment.