Pyuic utility from new PyQt4 4.11.4 produces all layouts slightly displaced or compressed. That's how it initially looks in designer:
An thats how it looks after pyuic makes *.py file:
The reason is that new pyuic doesn't make setMargin(0)
for all layouts (previously I used PyQt4.9.6 and it was set in *.py file, so it was ok). Is there any solution for this?
In the end certainly I can modify *.py files manually with script to add setMargin(0)
for all layouts, but there should be more civilized way.. unless this is a bug.
Thanks.