mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-25 14:57:20 +00:00
[client] imgui: respect WantCaptureKeyboard
If the overlay is active and imgui has set WantCaptureKeyboard we should ignore the escape key sequences.
This commit is contained in:
parent
7eb00bd24c
commit
8898496eba
@ -280,18 +280,21 @@ void app_handleWheelMotion(double motion)
|
||||
|
||||
void app_handleKeyPress(int sc)
|
||||
{
|
||||
if (sc == g_params.escapeKey && !g_state.escapeActive)
|
||||
if (!g_state.overlayInput || !g_state.io->WantCaptureKeyboard)
|
||||
{
|
||||
g_state.escapeActive = true;
|
||||
g_state.escapeTime = microtime();
|
||||
g_state.escapeAction = -1;
|
||||
return;
|
||||
}
|
||||
if (sc == g_params.escapeKey && !g_state.escapeActive)
|
||||
{
|
||||
g_state.escapeActive = true;
|
||||
g_state.escapeTime = microtime();
|
||||
g_state.escapeAction = -1;
|
||||
return;
|
||||
}
|
||||
|
||||
if (g_state.escapeActive)
|
||||
{
|
||||
g_state.escapeAction = sc;
|
||||
return;
|
||||
if (g_state.escapeActive)
|
||||
{
|
||||
g_state.escapeAction = sc;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (g_state.overlayInput)
|
||||
|
Loading…
Reference in New Issue
Block a user