From 2a7a1f2e2a5f455b9c25a2a2063f2df362ba3afe Mon Sep 17 00:00:00 2001 From: mantaohuang Date: Sat, 14 May 2022 02:05:58 -0400 Subject: [PATCH] remove math font from tick font dict --- src/backends/pyplot.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index 26572e77..3a8c09e8 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -1297,8 +1297,8 @@ function _before_layout_calcs(plt::Plot{PyPlotBackend}) fontProperties = PyPlot.PyCall.PyDict( Dict( "family" => axis[:tickfontfamily], - "math_fontfamily" => - py_get_matching_math_font(axis[:tickfontfamily]), + # "math_fontfamily" => + # py_get_matching_math_font(axis[:tickfontfamily]), "size" => py_thickness_scale(plt, axis[:tickfontsize]), "rotation" => axis[:tickfontrotation], ),