On Dec 17, 2007 3:00 PM, duncan duncan &lt;<a href="mailto:duncan73@gmail.com">duncan73@gmail.com</a>&gt; wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello.<br><br>In my application (a QApplication), as central widget I have two QListWidget.<br><br>When I double click on an item of a list widget, I want to show a dialog with some detail data for the item<br><br><br>This is the relevant code, the dialog is designed using Qt-Designer and windowModality is Qt::NonModal
<br><br>---<br>ItemDlg = QtGui.QDialog()<br>ItemDlgGui = Ui_D_item_detail()<br>ItemDlgGui.setupUi(ItemDlg)<br><br>ItemDlg.show()<br><br>#ItemDlg.exec_()<br>---<br><br>If I use the ItemDlg.exec_() line, all work correctly, but the dialog is modal, so I cannot work on the main window.
<br><br>Since I want a modeless dialog, I try to use ItemDlg.show() but now the dialog show itself and then close immediatly. <br><br>Any hints ?<br></blockquote><div><br>It seems that by mistake I resolve the problem. <br>
<br>It just need to call the .show() AND the .exec_() function. <br><br>bye<br>Gianluca<br> </div></div><br>