Skip to content

Commit

Permalink
Merge pull request #83 from frankl-uni/master
Browse files Browse the repository at this point in the history
fixed startup for PySide6 and PyQt5 and PyQt6
  • Loading branch information
cboulay authored Jul 3, 2024
2 parents 78122e9 + 6f16372 commit b62de2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylsl/examples/ReceiveAndPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def update():

# Start Qt event loop unless running in interactive mode or using pyside.
if (sys.flags.interactive != 1) or not hasattr(QtCore, "PYQT_VERSION"):
QtGui.QApplication.instance().exec_()
QtGui.QGuiApplication.instance().exec_()


if __name__ == "__main__":
Expand Down

0 comments on commit b62de2e

Please sign in to comment.