24 lines
1.2 KiB
Diff
24 lines
1.2 KiB
Diff
|
From: uazo <uazo@users.noreply.github.com>
|
||
|
Date: Thu, 7 Sep 2023 06:15:28 +0000
|
||
|
Subject: Fix crash on customize profile ui
|
||
|
|
||
|
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
|
||
|
---
|
||
|
.../webui/customize_themes/chrome_customize_themes_handler.cc | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/chrome/browser/ui/webui/customize_themes/chrome_customize_themes_handler.cc b/chrome/browser/ui/webui/customize_themes/chrome_customize_themes_handler.cc
|
||
|
--- a/chrome/browser/ui/webui/customize_themes/chrome_customize_themes_handler.cc
|
||
|
+++ b/chrome/browser/ui/webui/customize_themes/chrome_customize_themes_handler.cc
|
||
|
@@ -79,7 +79,7 @@ void ChromeCustomizeThemesHandler::GetChromeThemes(
|
||
|
auto theme_colors = GetAutogeneratedThemeColors(color_info.color);
|
||
|
auto theme = customize_themes::mojom::ChromeTheme::New();
|
||
|
theme->id = color_info.id;
|
||
|
- theme->label = l10n_util::GetStringUTF8(color_info.label_id);
|
||
|
+ //theme->label = l10n_util::GetStringUTF8(color_info.label_id);
|
||
|
auto colors = customize_themes::mojom::ThemeColors::New();
|
||
|
colors->frame = theme_colors.frame_color;
|
||
|
colors->active_tab = theme_colors.active_tab_color;
|
||
|
--
|
||
|
2.25.1
|