예제 #1
0
 def actionAbout_trigger(self, event):
     """Show about dialog"""
     from windows.about import About
     win = About()
     # Run the dialog event loop - blocking interaction on this window during this time
     result = win.exec_()
     if result == QDialog.Accepted:
         log.info('About Openshot add confirmed')
     else:
         log.info('About Openshot add cancelled')
예제 #2
0
	def about(self, widget):
		about = About()
		about.show()
예제 #3
0
파일: dewdrop.py 프로젝트: avafloww/dewdrop
 def about(self, widget):
     about = About()
     about.show()
예제 #4
0
def test_about():
	a = About()
	a.show()