mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 13:43:43 +00:00
SvgLoader: Fix typo
rect types w, h -> width, height Change-Id: I5e85360644d9b8c2b2d84f182a0de16fefe9edbf
This commit is contained in:
parent
0a562a4ae2
commit
9ba6bd654e
1 changed files with 2 additions and 2 deletions
|
@ -1218,8 +1218,8 @@ static constexpr struct
|
|||
} rectTags[] = {
|
||||
RECT_DEF(x, x, SvgParserLengthType::Horizontal),
|
||||
RECT_DEF(y, y, SvgParserLengthType::Vertical),
|
||||
RECT_DEF(w, w, SvgParserLengthType::Horizontal),
|
||||
RECT_DEF(h, h, SvgParserLengthType::Vertical),
|
||||
RECT_DEF(width, w, SvgParserLengthType::Horizontal),
|
||||
RECT_DEF(height, h, SvgParserLengthType::Vertical),
|
||||
RECT_DEF(rx, rx, SvgParserLengthType::Horizontal),
|
||||
RECT_DEF(ry, ry, SvgParserLengthType::Vertical)
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue