Python Forum
About Dialog in PyQt5 on macOS - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: About Dialog in PyQt5 on macOS (/thread-7756.html)



About Dialog in PyQt5 on macOS - cpuin - Jan-23-2018

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)