From 8224ca16b640ec9847ccdf598489bf14794312ab Mon Sep 17 00:00:00 2001 From: ocornut Date: Wed, 24 Jun 2015 20:45:06 -0600 Subject: [PATCH] Carriage return in demo tooltip --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index d8221d554..e6bfc925e 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -11100,7 +11100,7 @@ void ImGui::ShowTestWindow(bool* opened) static float col1[3] = { 1.0f,0.0f,0.2f }; static float col2[4] = { 0.4f,0.7f,0.0f,0.5f }; ImGui::ColorEdit3("color 1", col1); - ImGui::SameLine(); ShowHelpMarker("Click on the colored square to change edit mode. CTRL+click on individual component to input value.\n"); + ImGui::SameLine(); ShowHelpMarker("Click on the colored square to change edit mode.\nCTRL+click on individual component to input value.\n"); ImGui::ColorEdit4("color 2", col2);