Skip to content

Commit

Permalink
Examples: Don't use empty string as identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
thedmd committed May 2, 2023
1 parent d3d4689 commit 7d0f315
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ v0.9.2 (WIP):

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

BUGFIX: Examples: Don't use empty string as identifier


v0.9.1 (2022-08-27):

Expand Down
2 changes: 1 addition & 1 deletion examples/blueprints-example/blueprints-example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ struct Example:
ImGui::EndHorizontal();

static ImGuiTextFilter filter;
filter.Draw("", paneWidth);
filter.Draw("##filter", paneWidth);

ImGui::Spacing();

Expand Down

0 comments on commit 7d0f315

Please sign in to comment.