Skip to content

Commit 945737a

Browse files
committed
don't error if QT_PLUGIN_PATH not set
1 parent e46ee63 commit 945737a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ function qt_eventloop(QtCore::PyObject, sec::Real=50e-3)
140140
instance = QtCore["QCoreApplication"]["instance"]
141141
AllEvents = QtCore["QEventLoop"]["AllEvents"]
142142
processEvents = QtCore["QCoreApplication"]["processEvents"]
143-
pop!(ENV, "QT_PLUGIN_PATH") # clean up environment
143+
pop!(ENV, "QT_PLUGIN_PATH", "") # clean up environment
144144
maxtime = PyObject(50)
145145
install_doevent(sec) do async
146146
app = pycall(instance, PyObject)

0 commit comments

Comments
 (0)