Browse Source

Revert to case insensitive sorting of brands in Module Browser.

tags/v1.1.1
Andrew Belt 4 years ago
parent
commit
2fb6c9fc16
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      CHANGELOG.md
  2. +1
    -1
      src/app/ModuleBrowser.cpp

+ 1
- 1
CHANGELOG.md View File

@@ -1,4 +1,4 @@
##### Preface
#### Preface

In this document, Mod is Ctrl on Windows/Linux and Cmd on Mac.



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

@@ -352,7 +352,7 @@ struct BrowserSidebar : widget::Widget {
brandScroll->container->addChild(brandList);

// Collect brands from all plugins
std::set<std::string> brands;
std::set<std::string, string::CaseInsensitiveCompare> brands;
for (plugin::Plugin *plugin : plugin::plugins) {
brands.insert(plugin->brand);
}


Loading…
Cancel
Save