We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3d4689 commit 7d0f315Copy full SHA for 7d0f315
docs/CHANGELOG.txt
@@ -25,6 +25,8 @@ v0.9.2 (WIP):
25
26
BUGFIX: Examples: Add missing <cstdint> include for std::intptr_t (#199)
27
28
+ BUGFIX: Examples: Don't use empty string as identifier
29
+
30
31
v0.9.1 (2022-08-27):
32
examples/blueprints-example/blueprints-example.cpp
@@ -683,7 +683,7 @@ struct Example:
683
ImGui::EndHorizontal();
684
685
static ImGuiTextFilter filter;
686
- filter.Draw("", paneWidth);
+ filter.Draw("##filter", paneWidth);
687
688
ImGui::Spacing();
689
0 commit comments