Python Forum

Full Version: About Dialog in PyQt5 on macOS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
HI,

I can't find a way to make About to appear in the menu in macOS.
I want to implement About dialog, but in macOS there is a difference.


        self.menubar = QMenuBar()
        self.setMenuBar(self.menubar)
        self.fileMenu = QMenu("&File", self)
        self.menubar.addMenu(self.fileMenu)