mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2025-06-06 06:35:09 +02:00
fxconv: fix conversion of char-spacing attribute
This commit is contained in:
parent
317b82348f
commit
cdeefa1de6
1 changed files with 1 additions and 1 deletions
|
@ -697,7 +697,7 @@ def convert_topti(input, params):
|
||||||
line_height = int(params.get("height", grid.h))
|
line_height = int(params.get("height", grid.h))
|
||||||
|
|
||||||
# Default character spacing to 1
|
# Default character spacing to 1
|
||||||
char_spacing = params.get("char-spacing", 1)
|
char_spacing = int(params.get("char-spacing", "1"))
|
||||||
|
|
||||||
#--
|
#--
|
||||||
# Encoding blocks
|
# Encoding blocks
|
||||||
|
|
Loading…
Add table
Reference in a new issue