From 42688c9bf30aed5774a150d0927d210cbdbbd5a2 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 15 Mar 2022 17:24:53 +0100 Subject: [PATCH] Add id to annotation description input box. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 3edc4595..f9392179 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -16111,7 +16111,7 @@ void View::DrawSelectedAnnotation() char buf[1024]; buf[descsz] = '\0'; memcpy( buf, desc, descsz ); - if( ImGui::InputTextWithHint( "", "Describe annotation", buf, 256 ) ) + if( ImGui::InputTextWithHint( "##anndesc", "Describe annotation", buf, 256 ) ) { m_selectedAnnotation->text.assign( buf ); }