| 1103 | } |
| 1104 | |
| 1105 | NormalizedKeyString CommandManager::GetKeyFromName(const CommandID &name) const |
| 1106 | { |
| 1107 | if (auto iter = mCommandNameHash.find(name); |
| 1108 | iter != mCommandNameHash.end()) |
| 1109 | return iter->second->key; |
| 1110 | return {}; |
| 1111 | } |
| 1112 | |
| 1113 | NormalizedKeyString CommandManager::GetDefaultKeyFromName(const CommandID &name) |
| 1114 | const |
no test coverage detected