def btnAbout_clicked(self):
     about = AboutDlg(parent=self)
     about.show()
Example #2
0
 def about(self):
     """ display the about dialog """
     from about_dlg import AboutDlg
     dlg = AboutDlg(self.iface.mainWindow())
     dlg.exec_()
Example #3
0
	def about(self):
		""" display the about dialog """
		from about_dlg import AboutDlg
		dlg = AboutDlg( self.iface.mainWindow() )
		dlg.exec_()
 def btnAbout_clicked(self):
     about = AboutDlg(parent=self)
     about.show()