Merge pull request #6306 from jherico/barney

Fix ability to enable mappings parsed from JSON in JS
This commit is contained in:
samcake 2015-11-04 11:47:04 -08:00
commit f4cc8c4c2e

View file

@ -1029,6 +1029,7 @@ Mapping::Pointer UserInputMapper::parseMapping(const QJsonValue& json) {
} }
mapping->routes.push_back(route); mapping->routes.push_back(route);
} }
_mappingsByName[mapping->name] = mapping;
return mapping; return mapping;
} }