From 7024da3a5f6f1de0aee45ca6b285080c19b8524b Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Fri, 27 Sep 2024 02:24:46 -0400 Subject: [PATCH] Rename "View > Theme" to "UI theme" to reduce confusion with dark panels. --- src/app/MenuBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/MenuBar.cpp b/src/app/MenuBar.cpp index e8859ef9..1fdafa41 100644 --- a/src/app/MenuBar.cpp +++ b/src/app/MenuBar.cpp @@ -435,7 +435,7 @@ struct ViewButton : MenuButton { static const std::vector uiThemes = {"dark", "light", "hcdark"}; static const std::vector uiThemeLabels = {"Dark", "Light", "High contrast dark"}; - menu->addChild(createIndexSubmenuItem("Theme", uiThemeLabels, + menu->addChild(createIndexSubmenuItem("UI theme", uiThemeLabels, [=]() -> size_t { auto it = std::find(uiThemes.begin(), uiThemes.end(), settings::uiTheme); if (it == uiThemes.end())