feat(Hotkey): Add Repair PV hotkey (#1138)

This commit is contained in:
Rxann
2023-03-26 13:45:46 -04:00
committed by GitHub
parent b603173788
commit 5144d6ce45
4 changed files with 23 additions and 4 deletions

View File

@ -46,6 +46,8 @@ namespace big
g_hotkey_service->update_hotkey("fastquit", g.settings.hotkeys.fast_quit);
if (ImGui::Hotkey("Toggle Command Executor", &g.settings.hotkeys.cmd_excecutor))
g_hotkey_service->update_hotkey("cmdexecutor", g.settings.hotkeys.cmd_excecutor);
if (ImGui::Hotkey("Repair PV", &g.settings.hotkeys.repairpv))
g_hotkey_service->update_hotkey("repairpv", g.settings.hotkeys.repairpv);
ImGui::PopItemWidth();
}