fdo#39528: do not lose height of tree list box in Navigator
This commit is contained in:
parent
27f83e9f32
commit
15a14cdc33
1 changed files with 4 additions and 3 deletions
|
@ -555,10 +555,11 @@ void SdNavigatorWin::Resize()
|
|||
maToolbox.SetOutputSizePixel( aObjSize );
|
||||
|
||||
// Umgroessern der TreeLB
|
||||
aObjSize = maTlbObjects.Control::GetOutputSizePixel();
|
||||
aObjSize = maTlbObjects.GetSizePixel();
|
||||
aObjSize.Width() += aDiffSize.Width();
|
||||
aObjSize.Height() += aDiffSize.Height();
|
||||
maTlbObjects.SetOutputSizePixel( aObjSize );
|
||||
aObjSize.Height() = maLbDocs.GetPosPixel().Y() + aDiffSize.Height() -
|
||||
maTlbObjects.GetPosPixel().Y() - 4;
|
||||
maTlbObjects.SetSizePixel( aObjSize );
|
||||
|
||||
Point aPt( 0, aDiffSize.Height() );
|
||||
|
||||
|
|
Loading…
Reference in a new issue