Browse Source

Rename "View > Theme" to "UI theme" to reduce confusion with dark panels.

tags/v2.6.0
Andrew Belt 7 months ago
parent
commit
7024da3a5f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/app/MenuBar.cpp

+ 1
- 1
src/app/MenuBar.cpp View File

@@ -435,7 +435,7 @@ struct ViewButton : MenuButton {

static const std::vector<std::string> uiThemes = {"dark", "light", "hcdark"};
static const std::vector<std::string> 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())


Loading…
Cancel
Save