]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Patch from STV, fixes continuous timer events problem
authorsan <san@opencascade.com>
Fri, 8 Oct 2010 07:48:13 +0000 (07:48 +0000)
committersan <san@opencascade.com>
Fri, 8 Oct 2010 07:48:13 +0000 (07:48 +0000)
src/SUIT/SUIT_DataBrowser.cxx

index b08628fe4739e8dc1c94b32306c50a9939ac8199..99a4a1414c0859d620df59e1a51a60d03f3528ef 100644 (file)
@@ -54,6 +54,7 @@ SUIT_DataBrowser::SUIT_DataBrowser( SUIT_DataObject* root, QWidget* parent )
   init( root );
 
   myExpandTimer = new QTimer( this );
+  myExpandTimer->setSingleShot( true );
   connect( myExpandTimer, SIGNAL( timeout() ), this, SLOT( onExpandUpdate() ) );
 }