Browse Source

AddModuleWindow search bugfix.

* Fixed a bug where application would exit ungracefully when you start typing in add module window.
pull/520/head
Nikola Maric 7 years ago
parent
commit
d88fbc1bdd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/app/AddModuleWindow.cpp

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

@@ -88,7 +88,7 @@ struct MetadataMenu : ListMenu {


static bool isModelMatch(Model *model, std::string search) { static bool isModelMatch(Model *model, std::string search) {
// Build content string // Build content string
std::string str;
std::string str = "";
str += model->manufacturer; str += model->manufacturer;
str += " "; str += " ";
str += model->name; str += model->name;


Loading…
Cancel
Save