Re: [PyQt] widget show/hide bug

2008-06-16 Thread Benno Dielmann
Seems to be the Qt 4.3.0-4.3.3 bug Andreas mentions in his e-mail. I tested the snipped and the widget ends up being shown. I have Qt 4.4.0 and PyQt 4.4.2. Cheers, Benno. On Monday 16 June 2008 Andreas Pakulat wrote: | On 16.06.08 19:45:20, Detlev Offenbach wrote: | > Hi, | > | > your code is

Re: [PyQt] widget show/hide bug

2008-06-16 Thread Andreas Pakulat
On 16.06.08 19:45:20, Detlev Offenbach wrote: > Hi, > > your code is missing a line (s. below). > > On Montag, 16. Juni 2008, Vsevolod Fedorov wrote: > > Hello! > > > > I have stumbled on problem that can be demonstrated by the following > > snippet: > > > > from PyQt4 import QtGui > > impor

Re: [PyQt] widget show/hide bug

2008-06-16 Thread Detlev Offenbach
Hi, your code is missing a line (s. below). On Montag, 16. Juni 2008, Vsevolod Fedorov wrote: > Hello! > > I have stumbled on problem that can be demonstrated by the following > snippet: > > from PyQt4 import QtGui > import sys > > app = QtGui.QApplication(sys.argv) app.connect(app, SIGNAL(

[PyQt] widget show/hide bug

2008-06-16 Thread Vsevolod Fedorov
Hello! I have stumbled on problem that can be demonstrated by the following snippet: from PyQt4 import QtGui import sys app = QtGui.QApplication(sys.argv) w = QtGui.QWidget() w.show() w.hide() w.show() app.exec_() After its execution widget stays hidden and application keeps running