Add id to annotation description input box.

This commit is contained in:
Bartosz Taudul 2022-03-15 17:24:53 +01:00
parent 0b1e5d2c96
commit 42688c9bf3
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -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 );
}