mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
NetPlayChatUI: Add activate chat hotkey
This commit is contained in:
@ -60,7 +60,12 @@ void NetPlayChatUI::Display()
|
||||
ImGuiInputTextFlags_EnterReturnsTrue))
|
||||
{
|
||||
SendMessage();
|
||||
}
|
||||
|
||||
if (m_activate)
|
||||
{
|
||||
ImGui::SetKeyboardFocusHere(-1);
|
||||
m_activate = false;
|
||||
}
|
||||
|
||||
ImGui::PopItemWidth();
|
||||
@ -97,3 +102,11 @@ void NetPlayChatUI::SendMessage()
|
||||
m_message_buf[0] = '\0';
|
||||
}
|
||||
}
|
||||
|
||||
void NetPlayChatUI::Activate()
|
||||
{
|
||||
if (ImGui::IsItemFocused())
|
||||
ImGui::SetWindowFocus(NULL);
|
||||
else
|
||||
m_activate = true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user