mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-01 08:19:51 -05:00
Fix keybinding documentation (closes #813)
This commit is contained in:
@@ -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 << "]";
|
||||
|
||||
Reference in New Issue
Block a user