<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Hi,<br><br>I have some tabs in a QTabWidget that have a "long" text description so I would like to increase the height of the tabBar. See below:<br><pre>--------------------------------------<br>| tab1 | tab2 | Lot of text for tab3 |<br>---------------------------------------------<br>|                                           |<br>|                                           |<br>|                                           |<br>|                                           |<br>---------------------------------------------<br><br>I would like the following:<br><br>-----------------------------<br>| tab1 | tab2 | Lot of text |<br>|      |      | for tab3    |<br>---------------------------------------------<br>|                                           |<br>|                                           |<br>|                                           |<br>|       
                                    |<br>---------------------------------------------
<br>I've tried sub-classing QTabWidget in some way but not managed to get the behaviour that I'd like.<br>Here's the code snippet below (I'm sure I'm doing something stupid):<br><br>class specialTabWidget(QTabWidget):<br>    def __init__(self, parent=None):<br>        QTabWidget.__init__(self, parent)<br>        self.theTabBar = QTabBar()<br>        self.setTabBar(self.theTabBar)<br>        self.theTabBar.setMinimumHeight(50)<br><br>Any help much appreciated especially a code sample showing what I should do.<br><br>Thanks,<br><br>Chris <br></pre><br></td></tr></table><br>