Browse Source

fix error message in RackWidget::fromJson

tags/v0.6.0
Brian Sorahan 7 years ago
parent
commit
0e104ae869
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/app/RackWidget.cpp

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

@@ -263,7 +263,7 @@ void RackWidget::fromJson(json_t *rootJ) {
} }


if (!model) { if (!model) {
message += stringf("Could not find module \"%s\" in plugin \"%s\"\n", pluginSlug.c_str(), modelSlug.c_str());
message += stringf("Could not find module \"%s\" in plugin \"%s\"\n", modelSlug.c_str(), pluginSlug.c_str());
continue; continue;
} }




Loading…
Cancel
Save