def pyQtThreadCleanupCallback():
	import threading
	from nukescripts import pyQtAppUtils
	
	for t in threading.enumerate():
		if(t.getName() == "Nuke_PyQt_Thread"):
			pyQtApp = pyQtAppUtils.pyQtAppHelper()
			pyQtApp.stop()
Example #2
0
def pyQtThreadCleanupCallback():
    import threading
    from nukescripts import pyQtAppUtils

    for t in threading.enumerate():
        if (t.getName() == "Nuke_PyQt_Thread"):
            pyQtApp = pyQtAppUtils.pyQtAppHelper()
            pyQtApp.stop()
Example #3
0
def startQtRenderDialog():
    pyQtApp = pyQtAppUtils.pyQtAppHelper(start=True)
    pyQtApp.run(initPyQtRenderDialog, (pyQtApp, ))
    return pyQtApp
def startQtRenderDialog():
	pyQtApp = pyQtAppUtils.pyQtAppHelper(start = True)
	pyQtApp.run(initPyQtSubmitDialog, (pyQtApp,))
	return pyQtApp