[client] imgui: darken background when rendering overlays

This replaces the alert that says whether the overlay is enabled or not.

Also, we now always display the help menu in overlay mode.
This commit is contained in:
Quantum
2021-07-29 04:44:55 -04:00
committed by Geoffrey McRae
parent a980cd9406
commit ea2651e39b
3 changed files with 8 additions and 7 deletions

View File

@@ -137,15 +137,9 @@ static void bind_toggleOverlay(int sc, void * opaque)
{
g_state.overlayInput ^= true;
if (g_state.overlayInput)
{
g_state.io->ConfigFlags &= ~ImGuiConfigFlags_NoMouse;
app_alert(LG_ALERT_INFO, "Overlay input enabled");
}
else
{
g_state.io->ConfigFlags |= ImGuiConfigFlags_NoMouse;
app_alert(LG_ALERT_INFO, "Overlay input disabled");
}
}
void keybind_register(void)