Is there a way to convert a ui formed with qtDesigner to a python version to use without having an extra file?
I\'m using Maya for this UI, and converting this UI fi
Quickest way to convert .ui to .py is from terminal:
pyuic4 -x input.ui -o output.py
Make sure you have pyqt4-dev-tools installed.