Browse Source

Add plugin name to Module Browser search string.

tags/v1.1.0
Andrew Belt 4 years ago
parent
commit
10e1016126
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/app/ModuleBrowser.cpp

+ 2
- 0
src/app/ModuleBrowser.cpp View File

@@ -40,6 +40,8 @@ static float modelScore(plugin::Model *model, const std::string &search) {
std::string s;
s += model->plugin->brand;
s += " ";
s += model->plugin->name;
s += " ";
s += model->name;
s += " ";
s += model->slug;


Loading…
Cancel
Save