def _on_help_about(self, event): from About import AboutDlg about = AboutDlg(self) about.ShowModal() about.Destroy()
def about(self): aboutDlg = AboutDlg(self) aboutDlg.setWindowTitle(cfg["main:application_name"]) aboutDlg.show()