From d6a5cc7934b4f4f9d5effffc4f1acee151247f51 Mon Sep 17 00:00:00 2001 From: ocornut Date: Wed, 7 Apr 2021 17:57:14 +0200 Subject: [PATCH] Metrics: hotfix (fix 6ba13349 + f08566b4, #4005) --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index dce61e80f34f..035e748c5dcb 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -11116,7 +11116,7 @@ void ImGui::ShowMetricsWindow(bool* p_open) // Misc Details if (TreeNode("Internal state")) { - const char* input_source_names[] = { "None", "Mouse", "Nav", "NavKeyboard", "NavGamepad" }; IM_ASSERT(IM_ARRAYSIZE(input_source_names) == ImGuiInputSource_COUNT); + const char* input_source_names[] = { "None", "Mouse", "Keyboard", "Gamepad", "Nav", "Clipboard" }; IM_ASSERT(IM_ARRAYSIZE(input_source_names) == ImGuiInputSource_COUNT); Text("WINDOWING"); Indent();