def menuAboutClick(self):
        """Slot used when the "About" menu item is clicked.

        """
        about_dialog = AboutDialog(self)
        about_dialog.exec_()
 def show_about(self):
     dlg = AboutDialog(self.context, self)
     dlg.exec_()
Exemple #3
0
    def _onActionAboutTriggered(self):

        dialog = AboutDialog(self)
        dialog.exec_()