From 6c5029af78581629d1c202a3ae5822ad2897249b Mon Sep 17 00:00:00 2001 From: Kristoffer Date: Mon, 1 May 2023 13:13:37 +0200 Subject: [PATCH] fix id collision in clear button --- server/TracyView_FindZone.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView_FindZone.cpp b/server/TracyView_FindZone.cpp index b6592d4d..f6ded831 100644 --- a/server/TracyView_FindZone.cpp +++ b/server/TracyView_FindZone.cpp @@ -1368,7 +1368,7 @@ void View::DrawFindZone() bool filterChanged = m_userTextFilter.Draw( ICON_FA_FILTER "###resultFilter", 200 ); ImGui::SameLine(); - if( ImGui::Button( ICON_FA_DELETE_LEFT " Clear" ) ) + if( ImGui::Button( ICON_FA_DELETE_LEFT " Clear###userText" ) ) { m_userTextFilter.Clear(); filterChanged = true;