Skip to content

Commit a62e9ff

Browse files
committed
try qt4 before qt5, since qt5 still seems flakey in many python distros (closes #278)
1 parent a3a9832 commit a62e9ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/PyPlot.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function find_backend(matplotlib::PyObject)
106106
elseif is_apple() && conda # partially work around #164
107107
guis = [:qt5, :qt4, :tk, :wx, :gtk, :gtk3]
108108
else
109-
guis = [:tk, :qt5, :qt4, :wx, :gtk, :gtk3]
109+
guis = [:tk, :qt4, :qt5, :wx, :gtk, :gtk3]
110110
end
111111
options = [(g,gui2matplotlib[g]) for g in guis]
112112

0 commit comments

Comments
 (0)