I\'m using PyQt and trying to promote a widget in QtDesigner. I\'m able to get it working if I specify the full module path, in the \"Header file\" field, to the file that c
I got it figured out, my actual code is slightly different then the simplified example I gave. My actual code is more like this:
/PythonModuleRoot/Ui/MainUi.py
/PythonModuleRoot/Ui/MainUi.ui
/PythonModuleRoot/Ui/Widgets/CustomWidget.py
So I just needed to change the contents of Header file to be how MainUi would import CustomWidget, so: "Widgets.CustomWidget". This article pointed me in the right direction: http://www.mail-archive.com/pyqt@riverbankcomputing.com/msg17893.html