Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-03-15 19:24:53 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-03-15 19:24:53 +0300
commit42688c9bf30aed5774a150d0927d210cbdbbd5a2 (patch)
treedee5b5ffe8a8632399b9e559770747e597667645
parent0b1e5d2c9666ce7810447b6bc53026ab3a5cb650 (diff)
Add id to annotation description input box.
-rw-r--r--server/TracyView.cpp2
1 files changed, 1 insertions, 1 deletions
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 );
}