Qt: Fix controller navigation for fullscreen UI

This commit is contained in:
Connor McLaughlin
2021-02-27 01:17:44 +10:00
parent d6b8a80eb7
commit b4e4e5891d
5 changed files with 6 additions and 20 deletions

View File

@ -194,22 +194,12 @@ void NoGUIHostInterface::RequestExit()
m_quit_request = true;
}
void NoGUIHostInterface::PollAndUpdate()
{
CommonHostInterface::PollAndUpdate();
if (m_controller_interface)
m_controller_interface->PollEvents();
}
void NoGUIHostInterface::Run()
{
while (!m_quit_request)
{
RunCallbacks();
PollAndUpdate();
if (m_fullscreen_ui_enabled)
FullscreenUI::SetImGuiNavInputs();
ImGui::NewFrame();