This commit is contained in:
Alexander Frick 2025-01-04 21:59:21 -06:00
parent 2c16deb5bf
commit 81c5a21723
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources
index ceabbced0f67e..c298005d46bc3 100644 index ceabbced0f67e..c298005d46bc3 100644
--- a/chrome/app/generated_resources.grd --- a/chrome/app/generated_resources.grd
+++ b/chrome/app/generated_resources.grd +++ b/chrome/app/generated_resources.grd
@@ -13571,6 +13571,9 @@ This can include information about installed software, files, your browser, and @@ -13574,6 +13574,9 @@ This can include information about installed software, files, your browser, and
<message name="IDS_DIRECTORY_LISTING_DATE_MODIFIED" desc="When viewing a local directory, this is the text for the column above the last modified dates."> <message name="IDS_DIRECTORY_LISTING_DATE_MODIFIED" desc="When viewing a local directory, this is the text for the column above the last modified dates.">
Date Modified Date Modified
</message> </message>

View file

@ -157,7 +157,7 @@ void BrowserAppMenuButton::UpdateIcon() {
? kBrowserToolsChromeRefreshIcon ? kBrowserToolsChromeRefreshIcon
: kBrowserToolsChromeRefreshThoriumIcon; : kBrowserToolsChromeRefreshThoriumIcon;
// Fix Thorium hamburger menu size // Fix Thorium hamburger menu size
static const int icon_size = features::IsChromeRefresh2023() ? 22 : 22; constexpr int icon_size = 22;
for (auto state : kButtonStates) { for (auto state : kButtonStates) {
SkColor icon_color = GetForegroundColor(state); SkColor icon_color = GetForegroundColor(state);
SetImageModel(state, ui::ImageModel::FromVectorIcon(icon, icon_color, icon_size)); SetImageModel(state, ui::ImageModel::FromVectorIcon(icon, icon_color, icon_size));