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

@ -470,6 +470,12 @@ void CommonHostInterface::OnAchievementsRefreshed()
void CommonHostInterface::PollAndUpdate()
{
if (m_controller_interface)
m_controller_interface->PollEvents();
if (m_fullscreen_ui_enabled)
FullscreenUI::SetImGuiNavInputs();
#ifdef WITH_DISCORD_PRESENCE
PollDiscordPresence();
#endif