Example #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')
Example #2
0
	def about(self, widget):
		about = About()
		about.show()
Example #3
0
 def about(self, widget):
     about = About()
     about.show()
Example #4
0
def test_about():
	a = About()
	a.show()