mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-16 20:45:45 -04:00
HostInterface: Set NoNav on FPS window
Prevents it stealing focus in SDL frontend.
This commit is contained in:
@ -237,7 +237,7 @@ void HostInterface::DrawFPSWindow()
|
|||||||
if (!ImGui::Begin("FPSWindow", nullptr,
|
if (!ImGui::Begin("FPSWindow", nullptr,
|
||||||
ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse |
|
ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoCollapse |
|
||||||
ImGuiWindowFlags_NoBackground | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMouseInputs |
|
ImGuiWindowFlags_NoBackground | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoMouseInputs |
|
||||||
ImGuiWindowFlags_NoBringToFrontOnFocus))
|
ImGuiWindowFlags_NoBringToFrontOnFocus | ImGuiWindowFlags_NoNav))
|
||||||
{
|
{
|
||||||
ImGui::End();
|
ImGui::End();
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user