Cleaner condition

This commit is contained in:
orionaskatu 2022-09-09 21:42:46 +02:00 committed by AUTOMATIC1111
parent 79cca25704
commit 89f4bb3ca1
1 changed files with 1 additions and 4 deletions

View File

@ -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)