From 66c17b502d3c9b06994228a98e7423a84f2d49cc Mon Sep 17 00:00:00 2001 From: R2DLiu Date: Thu, 16 Jul 2020 17:20:22 -0400 Subject: [PATCH] undo --- Externals/imgui/imgui.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Externals/imgui/imgui.h b/Externals/imgui/imgui.h index 1164839abc..53e172533a 100644 --- a/Externals/imgui/imgui.h +++ b/Externals/imgui/imgui.h @@ -449,6 +449,7 @@ namespace ImGui IMGUI_API bool VSliderFloat(const char* label, const ImVec2& size, float* v, float v_min, float v_max, const char* format = "%.3f", float power = 1.0f); IMGUI_API bool VSliderInt(const char* label, const ImVec2& size, int* v, int v_min, int v_max, const char* format = "%d"); IMGUI_API bool VSliderScalar(const char* label, const ImVec2& size, ImGuiDataType data_type, void* v, const void* v_min, const void* v_max, const char* format = NULL, float power = 1.0f); + // Widgets: Input with Keyboard // - If you want to use InputText() with a dynamic string type such as std::string or your own, see misc/cpp/imgui_stdlib.h // - Most of the ImGuiInputTextFlags flags are only useful for InputText() and not for InputFloatX, InputIntX, InputDouble etc.