lottie: code refactoring.

text tracking is an optional property.
it's good to initialize it with 0.
This commit is contained in:
Hermet Park 2024-05-09 14:43:44 +09:00 committed by Hermet Park
parent 1e7cf2f5f9
commit c7e8f0c476

View file

@ -75,7 +75,7 @@ struct TextDocument
} stroke; } stroke;
char* name = nullptr; char* name = nullptr;
float size; float size;
float tracking; float tracking = 0.0f;
uint8_t justify; uint8_t justify;
}; };