You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 21, 2019. It is now read-only.
Under osx, the Qmenu needs to be instantiated with no parent. However, the autogenerated base class (from the .ui) file has the mainwindow as parent.
http://srinikom.github.io/pyside-docs/PySide/QtGui/QMenuBar.html
Mainwindow.py, L31
self.menuBar = QtGui.QMenuBar(MainWindow)
should be
self.menuBar = QtGui.QMenuBar()
on OSX.