From 73d1126bf423a2dc376452ac33a570ecb59bec71 Mon Sep 17 00:00:00 2001 From: ocornut Date: Fri, 29 May 2015 11:15:24 +0100 Subject: [PATCH] Examples: OCD tweaks, a sign that we are near the release! --- imgui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/imgui.cpp b/imgui.cpp index 33894e3be..df51220ea 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -11525,7 +11525,7 @@ static void ShowExampleMenuFile() static void ShowExampleAppAutoResize(bool* opened) { - if (!ImGui::Begin("Example: Auto-Resizing Window", opened, ImGuiWindowFlags_AlwaysAutoResize)) + if (!ImGui::Begin("Example: Auto-resizing window", opened, ImGuiWindowFlags_AlwaysAutoResize)) { ImGui::End(); return; @@ -11583,7 +11583,7 @@ static void ShowExampleAppManipulatingWindowTitle(bool* opened) static void ShowExampleAppCustomRendering(bool* opened) { ImGui::SetNextWindowSize(ImVec2(300,350), ImGuiSetCond_FirstUseEver); - if (!ImGui::Begin("Example: Custom Rendering", opened)) + if (!ImGui::Begin("Example: Custom rendering", opened)) { ImGui::End(); return;