Skip to content

Commit 5d68ad2

Browse files
committedOct 13, 2024
move and fix about menu item icon
1 parent 977d492 commit 5d68ad2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎src/chrome/browser/ui/toolbar/app_menu_model.cc

+7-7
Original file line numberDiff line numberDiff line change
@@ -1940,18 +1940,18 @@ void AppMenuModel::Build() {
19401940
sub_menus_.push_back(std::make_unique<HelpMenuModel>(this, browser_));
19411941
AddSubMenuWithStringIdAndVectorIcon(this, IDC_HELP_MENU, IDS_HELP_MENU,
19421942
sub_menus_.back().get(), kHelpMenuIcon);
1943-
#else
1944-
// Add About icon to Thorium menu
1945-
#if BUILDFLAG(IS_CHROMEOS_ASH)
1946-
AddItemWithStringIdAndVectorIcon(this, IDC_ABOUT, IDS_ABOUT, vector_icons::kInfoRefreshIcon);
1947-
#else
1948-
AddItemWithStringIdAndVectorIcon(this, IDC_ABOUT, IDS_ABOUT, vector_icons::kInfoRefreshIcon);
1949-
#endif
19501943
#endif
19511944

19521945
AddItemWithStringIdAndVectorIcon(this, IDC_OPTIONS, IDS_SETTINGS,
19531946
kSettingsMenuIcon);
19541947

1948+
// Add About icon to Thorium menu
1949+
#if BUILDFLAG(IS_CHROMEOS_ASH)
1950+
AddItemWithStringIdAndVectorIcon(this, IDC_ABOUT, IDS_ABOUT, vector_icons::kInfoRegularIcon);
1951+
#else
1952+
AddItemWithStringIdAndVectorIcon(this, IDC_ABOUT, IDS_ABOUT, vector_icons::kInfoRegularIcon);
1953+
#endif
1954+
19551955
if (browser_defaults::kShowExitMenuItem) {
19561956
AddItemWithStringIdAndVectorIcon(this, IDC_EXIT, IDS_EXIT, kExitMenuIcon);
19571957
}

0 commit comments

Comments
 (0)