From 2e35957a81d4ff67b30ea80c1592682de796d325 Mon Sep 17 00:00:00 2001 From: omar Date: Tue, 22 Aug 2017 20:02:52 +0800 Subject: [PATCH] Undo reordering of ImGuiKey in Nav branch --- imgui.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imgui.h b/imgui.h index d5ed61b5..eae153b9 100644 --- a/imgui.h +++ b/imgui.h @@ -587,10 +587,10 @@ enum ImGuiSelectableFlags_ enum ImGuiKey_ { ImGuiKey_Tab, // for tabbing through fields - ImGuiKey_UpArrow, // for text edit - ImGuiKey_DownArrow, // for text edit ImGuiKey_LeftArrow, // for text edit ImGuiKey_RightArrow,// for text edit + ImGuiKey_UpArrow, // for text edit + ImGuiKey_DownArrow, // for text edit ImGuiKey_PageUp, ImGuiKey_PageDown, ImGuiKey_Home, // for text edit