Browse Source

Merge pull request #628 from briansorahan/626-RackWidget-error-message-fix

fix error message in RackWidget::fromJson
tags/v0.6.0
Andrew Belt GitHub 6 years ago
parent
commit
4b176ef9bb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
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) {
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;
}



Loading…
Cancel
Save