From: abn Date: Thu, 16 Oct 2014 12:23:41 +0000 (+0200) Subject: Minor bug fix for ALAMOS X-Git-Tag: V7_5_0b1~17 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ac29f0372d6476aec42d9ecb8231031d9d73f65e;p=modules%2Fgui.git Minor bug fix for ALAMOS --- diff --git a/src/SALOME_PYQT/SalomePyQt/SalomePyQt.cxx b/src/SALOME_PYQT/SalomePyQt/SalomePyQt.cxx index 22099f8e4..e6edb9d98 100644 --- a/src/SALOME_PYQT/SalomePyQt/SalomePyQt.cxx +++ b/src/SALOME_PYQT/SalomePyQt/SalomePyQt.cxx @@ -2657,7 +2657,9 @@ public: }; int SalomePyQt::createView( const QString& type, bool visible, const int width, const int height ) { - return ProcessEvent( new TCreateView( type, visible, width, height ) ); + int ret = ProcessEvent( new TCreateView( type, visible, width, height ) ); + QCoreApplication::processEvents(); + return ret; } /*!