We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71632ff commit b3b6248Copy full SHA for b3b6248
1 file changed
src/PyPlot.jl
@@ -124,8 +124,8 @@ function find_backend(matplotlib::PyObject)
124
default = lowercase(get(ENV, "MPLBACKEND", "none"))
125
if default == "none"
126
default = lowercase(get(rcParams, "backend", "none"))
127
- if is_windows() && default == "qt5agg"
128
- default = "qt4agg" # workaround issue #278
+ if is_windows() && startswith(default, "qt")
+ default = "tkagg" # workaround issue #278
129
end
130
131
if haskey(matplotlib2gui,default)
0 commit comments