Don't wrap generated font in quotes

This commit is contained in:
pyoor 2017-09-19 16:02:37 -04:00
parent 4ab0af5feb
commit d978a5d466
1 changed files with 1 additions and 1 deletions

View File

@ -87,6 +87,6 @@ make.font = {
s += make.font.size() s += make.font.size()
s += ' ' s += ' '
s += make.font.family() s += make.font.family()
return '\'' + s + '\'' return s
} }
} }