From: dmv Date: Mon, 27 Apr 2009 13:17:35 +0000 (+0000) Subject: IPAL21095 TC4.1.5 Hide option doesn't work for Geom objects. X-Git-Tag: V4_1_0_maintainance_FINAL~19 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=6c6715c581c6dbfedcf3c5e5f37ba5c756638bd2;p=modules%2Fgui.git IPAL21095 TC4.1.5 Hide option doesn't work for Geom objects. --- diff --git a/src/Qtx/QtxWorkstack.cxx b/src/Qtx/QtxWorkstack.cxx index 26f04b6f9..611efabca 100644 --- a/src/Qtx/QtxWorkstack.cxx +++ b/src/Qtx/QtxWorkstack.cxx @@ -1815,7 +1815,7 @@ QWidgetList QtxWorkstackArea::widgetList( const bool all ) const QWidgetList lst; for ( QWidgetListIt it( myList ); it.current(); ++it ) { - if ( all && widgetVisibility( it.current() ) ) + if ( all || widgetVisibility( it.current() ) ) lst.append( it.current() ); } return lst;