Fix keybinding documentation (closes #813)

This commit is contained in:
Alexander Bock
2019-05-05 13:06:46 +02:00
parent 595cbc4bcf
commit 26e15fc1df
+2 -2
View File
@@ -153,10 +153,10 @@ std::string KeybindingManager::generateJson() const {
json << "{";
json << R"("key": ")" << ghoul::to_string(p.first) << "\",";
json << R"("script": ")" << escapedJson(p.second.command) << "\",";
json << R"("remoteScripting: ")"
json << R"("remoteScripting": )"
<< (p.second.synchronization ? "true," : "false,");
json << R"("documentation": ")" << escapedJson(p.second.documentation) << "\",";
json << R"("name: ")" << escapedJson(p.second.name) << "\"";
json << R"("name": ")" << escapedJson(p.second.name) << "\"";
json << "}";
}
json << "]";