From: sln Date: Wed, 26 Oct 2005 14:24:51 +0000 (+0000) Subject: Merged with header (fix of bug of layout in the case when dockable window placed... X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=da61bcf07e0a155cd9375842406254f3a9611fb9;p=modules%2Fgui.git Merged with header (fix of bug of layout in the case when dockable window placed at the bottom of middle dock area) --- diff --git a/src/STD/STD_TabDesktop.cxx b/src/STD/STD_TabDesktop.cxx index c5a4c66b7..020abcf54 100644 --- a/src/STD/STD_TabDesktop.cxx +++ b/src/STD/STD_TabDesktop.cxx @@ -28,6 +28,10 @@ myWorkstackAction( 0 ) setCentralWidget( base ); myWorkstack = new QtxWorkstack( base ); + // setting Expanding size policy for central workstack. If there are several widgets + // in central area of Desktop, other widgets will be added below the workstack (CATHARE, TIRPOLI modules). + // But the workstack must occupy as much space as possible -- set Expanding for it. + myWorkstack->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Expanding ) ); myWorkstack->setAccel(QtxWorkstack::SplitVertical, SHIFT + Key_V); myWorkstack->setAccel(QtxWorkstack::SplitHorizontal, SHIFT + Key_H);