Skip to content

Commit 7d0f315

Browse files
committed
Examples: Don't use empty string as identifier
1 parent d3d4689 commit 7d0f315

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/CHANGELOG.txt

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ v0.9.2 (WIP):
2525

2626
BUGFIX: Examples: Add missing <cstdint> include for std::intptr_t (#199)
2727

28+
BUGFIX: Examples: Don't use empty string as identifier
29+
2830

2931
v0.9.1 (2022-08-27):
3032

examples/blueprints-example/blueprints-example.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ struct Example:
683683
ImGui::EndHorizontal();
684684

685685
static ImGuiTextFilter filter;
686-
filter.Draw("", paneWidth);
686+
filter.Draw("##filter", paneWidth);
687687

688688
ImGui::Spacing();
689689

0 commit comments

Comments
 (0)