From 4f34ed5010ce2350ebb27379281ca8471b4a7abe Mon Sep 17 00:00:00 2001 From: Anton Holmberg Date: Sun, 1 May 2016 16:18:31 -0700 Subject: [PATCH] Fix typo in Programmer guide --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index fad187b4..97a935ec 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -78,7 +78,7 @@ - read the FAQ below this section! - your code creates the UI, if your code doesn't run the UI is gone! == very dynamic UI, no construction/destructions steps, less data retention on your side, no state duplication, less sync, less bugs. - call and read ImGui::ShowTestWindow() for demo code demonstrating most features. - - see examples/ folder for standalone sample applications. Prefer reading examples/opengl_example/ first at it is the simplest. + - see examples/ folder for standalone sample applications. Prefer reading examples/opengl_example/ first as it is the simplest. you may be able to grab and copy a ready made imgui_impl_*** file from the examples/. - customization: PushStyleColor()/PushStyleVar() or the style editor to tweak the look of the interface (e.g. if you want a more compact UI or a different color scheme).