On 14.10.07 22:00:38, [EMAIL PROTECTED] wrote: > Hi guys, > slowly slowly I am getting there, thanks to your assistance! There > is one last thing that I need to address: > > within my grid layout, I want to place some widgets on a different > position, than the (row, column) system allows me. (for example > place two buttons together, under the same (row,column) > combination. Can I do this, or do I have to implement a different > layout?
Sure you can, this involves nested layout. First select the two buttons and put them into a horizontal layout. Then out the horizontal layout where the 2 buttons should be. Then select the widget again and put a gridlayout. Now the 2 buttons will stay together in one cell. Andreas -- Your best consolation is the hope that the things you failed to get weren't really worth having. _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
