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
parent 3fdd699a76
commit e618dbf0f8

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