From e835ef1d90cd0ca024897daad14ae35934630f02 Mon Sep 17 00:00:00 2001 From: ocornut Date: Sun, 30 Nov 2014 15:19:39 +0000 Subject: [PATCH] Fix from incorrect change left-over in a31e44b99afb54b3c9a3d531ace36bba0f229fb2 --- imgui.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.h b/imgui.h index 3da2be43..f1592161 100644 --- a/imgui.h +++ b/imgui.h @@ -295,7 +295,7 @@ namespace ImGui IMGUI_API int GetFrameCount(); IMGUI_API const char* GetStyleColorName(ImGuiCol idx); IMGUI_API void GetDefaultFontData(const void** fnt_data, unsigned int* fnt_size, const void** png_data, unsigned int* png_size); - IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = false, float wrap_width = -1.0f); + IMGUI_API ImVec2 CalcTextSize(const char* text, const char* text_end = NULL, bool hide_text_after_double_hash = true, float wrap_width = -1.0f); } // namespace ImGui