HostInterface: Set NoNav on FPS window

Prevents it stealing focus in SDL frontend.
This commit is contained in:
Connor McLaughlin 2020-04-11 00:00:37 +10:00
parent 674bcdfeec
commit 6cfad33b8e
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ void HostInterface::DrawFPSWindow()
if (!ImGui::Begin("FPSWindow", nullptr,
ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse |
ImGuiWindowFlags_NoBackground | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMouseInputs |
ImGuiWindowFlags_NoBringToFrontOnFocus))
ImGuiWindowFlags_NoBringToFrontOnFocus | ImGuiWindowFlags_NoNav))
{
ImGui::End();
return;