fix: fix text annotation render bug after input text modified

This commit is contained in:
kradchen
2025-07-21 14:35:01 +08:00
parent 0bbd319204
commit 8e4f1f5db5

View File

@@ -41,6 +41,7 @@ void TextAnnotationActor::BuildShape() {
void TextAnnotationActor::SetTextInput(const char *str) {
strcpy_s(mTextStr, str);
//BuildShape will be automatically called through render overlay.
Modified();
}