mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Add imgui-based Netplay Chat
This commit is contained in:
@ -8,6 +8,8 @@
|
||||
#include <QApplication>
|
||||
#include <QProgressDialog>
|
||||
|
||||
#include <imgui.h>
|
||||
|
||||
#include "Common/Common.h"
|
||||
|
||||
#include "Core/ConfigManager.h"
|
||||
@ -149,7 +151,8 @@ void Host_RequestRenderWindowSize(int w, int h)
|
||||
|
||||
bool Host_UINeedsControllerState()
|
||||
{
|
||||
return Settings::Instance().IsControllerStateNeeded();
|
||||
return Settings::Instance().IsControllerStateNeeded() ||
|
||||
(ImGui::GetCurrentContext() && ImGui::GetIO().WantCaptureKeyboard);
|
||||
}
|
||||
|
||||
bool Host_UIBlocksControllerState()
|
||||
|
Reference in New Issue
Block a user