summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/NetPlayChatUI.cpp
diff options
context:
space:
mode:
authorspycrab <spycrab@users.noreply.github.com>2019-03-24 15:57:36 +0100
committerspycrab <spycrab@users.noreply.github.com>2019-03-26 18:13:32 +0100
commitf7897778ff3fc752e217de27d6d8fa76984beb3e (patch)
tree9230dd529b7e1836397cfebcd330d1f3a1da560a /Source/Core/VideoCommon/NetPlayChatUI.cpp
parenteaa1874875187fc247b304a2f6ebd87b0cdc179b (diff)
NetPlayChatUI: Add activate chat hotkey
Diffstat (limited to 'Source/Core/VideoCommon/NetPlayChatUI.cpp')
-rw-r--r--Source/Core/VideoCommon/NetPlayChatUI.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/NetPlayChatUI.cpp b/Source/Core/VideoCommon/NetPlayChatUI.cpp
index 2388d94b91..7587229ee0 100644
--- a/Source/Core/VideoCommon/NetPlayChatUI.cpp
+++ b/Source/Core/VideoCommon/NetPlayChatUI.cpp
@@ -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;
+}