diff --git a/docs/CHANGELOG.txt b/docs/CHANGELOG.txt index e3bb5c43..d0eb171c 100644 --- a/docs/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -25,6 +25,8 @@ v0.9.2 (WIP): BUGFIX: Examples: Add missing include for std::intptr_t (#199) + BUGFIX: Examples: Don't use empty string as identifier + v0.9.1 (2022-08-27): diff --git a/examples/blueprints-example/blueprints-example.cpp b/examples/blueprints-example/blueprints-example.cpp index 82d84430..58f5e1bf 100644 --- a/examples/blueprints-example/blueprints-example.cpp +++ b/examples/blueprints-example/blueprints-example.cpp @@ -683,7 +683,7 @@ struct Example: ImGui::EndHorizontal(); static ImGuiTextFilter filter; - filter.Draw("", paneWidth); + filter.Draw("##filter", paneWidth); ImGui::Spacing();