Skip to content

Commit

Permalink
Add "Liberation Sans" as a supported font (thanks @alpapan, #629)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanghaibao committed Mar 1, 2024
1 parent 0be3944 commit 6071c62
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion jcvi/apps/base.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Basic support for running library as script
"""

import errno
import os
import time
Expand Down Expand Up @@ -539,7 +540,13 @@ def set_image_options(
setup_theme,
)

allowed_fonts = ("Helvetica", "Palatino", "Schoolbook", "Arial")
allowed_fonts = (
"Helvetica",
"Liberation Sans",
"Palatino",
"Schoolbook",
"Arial",
)
allowed_styles = ("darkgrid", "whitegrid", "dark", "white", "ticks")
allowed_diverge = (
"BrBG",
Expand Down

0 comments on commit 6071c62

Please sign in to comment.