We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fcf519 commit f842bcbCopy full SHA for f842bcb
icon_font_to_png/command_line.py
@@ -133,6 +133,10 @@ def run(arguments):
133
if given_filename.lower().endswith('.png'):
134
given_filename = given_filename[:-4]
135
136
+ # Some fonts have empty values
137
+ # (prefix only - which we remove - for common styles)
138
+ selected_icons = list(filter(None, selected_icons))
139
+
140
# Commence exporting
141
for icon in selected_icons:
142
if len(selected_icons) > 1:
0 commit comments