| 383 | } |
| 384 | |
| 385 | std::string HotkeyManager::getKeybindingInput() { |
| 386 | std::lock_guard<std::mutex> l(lock); |
| 387 | return requested_keybind; |
| 388 | } |
| 389 | |
| 390 | HotkeyManager::HotkeyManager() { |
| 391 | this->hotkey_thread = std::thread(&HotkeyManager::hotkey_thread_fn, this); |
no outgoing calls
no test coverage detected