Updated other references to Droid Sans in matplotlib.py
authorRuben Rodriguez <ruben@gnu.org>
Thu, 16 Feb 2023 16:13:22 +0000 (17:13 +0100)
committerRuben Rodriguez <ruben@gnu.org>
Thu, 16 Feb 2023 16:13:22 +0000 (17:13 +0100)
plugins/matplotlib.py

index 19d3aaea208292f58d62bee07f9b604de25b40d0..a9105841c5d304af0a7974a3718a71a90fc42a91 100644 (file)
@@ -95,8 +95,8 @@ def run_matplotlib(data, options=[]):
     if title is not None:
       ax1.set_title(data.get("title", None), fontsize=24, fontfamily="Roboto Sans", fontweight='bold')
     filename=data.get("filename", None)
-    plt.setp(pcts, color='white', fontweight='bold', fontsize=9, fontfamily="Droid Sans")
-    plt.setp(texts, color='black', fontsize=12, fontfamily="Droid Sans")
+    plt.setp(pcts, color='white', fontweight='bold', fontsize=9, fontfamily="Roboto Sans")
+    plt.setp(texts, color='black', fontsize=12, fontfamily="Roboto Sans")
     if not os.path.exists("./output/images"):
         os.mkdir("./output")
         os.mkdir("./output/images")