Commit 89f4bb3c authored by orionaskatu's avatar orionaskatu Committed by AUTOMATIC1111

Cleaner condition

parent 79cca257
......@@ -133,10 +133,7 @@ def draw_grid_annotations(im, width, height, hor_texts, ver_texts):
fontsize = (width + height) // 25
line_spacing = fontsize // 2
if not opts.font:
fnt = ImageFont.truetype(Roboto, fontsize)
else:
fnt = ImageFont.truetype(opts.font, fontsize)
fnt = ImageFont.truetype(opts.font or Roboto, fontsize)
color_active = (0, 0, 0)
color_inactive = (153, 153, 153)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment