You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by re...@apache.org on 2015/01/03 00:25:08 UTC

svn commit: r1649153 - /openoffice/trunk/main/cui/source/options/optpath.cxx

Author: regina
Date: Fri Jan  2 23:25:07 2015
New Revision: 1649153

URL: http://svn.apache.org/r1649153
Log:
#i125987 Table header within paths dialog too small
Patch by:Thorsten Wagner <th...@gmail.com>

Modified:
    openoffice/trunk/main/cui/source/options/optpath.cxx

Modified: openoffice/trunk/main/cui/source/options/optpath.cxx
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/cui/source/options/optpath.cxx?rev=1649153&r1=1649152&r2=1649153&view=diff
==============================================================================
--- openoffice/trunk/main/cui/source/options/optpath.cxx (original)
+++ openoffice/trunk/main/cui/source/options/optpath.cxx Fri Jan  2 23:25:07 2015
@@ -230,7 +230,7 @@ SvxPathTabPage::SvxPathTabPage( Window*
 	aPathBtn.SetClickHdl( aLink );
 	Size aBoxSize = aPathCtrl.GetOutputSizePixel();
 	pHeaderBar = new HeaderBar( &aPathCtrl, WB_BUTTONSTYLE | WB_BOTTOMBORDER );
-	pHeaderBar->SetPosSizePixel( Point( 0, 0 ), Size( aBoxSize.Width(), 16 ) );
+	pHeaderBar->SetPosSizePixel( Point( 0, 0 ), Size( aBoxSize.Width(), 20 ) );
 	pHeaderBar->SetSelectHdl( LINK( this, SvxPathTabPage, HeaderSelect_Impl ) );
 	pHeaderBar->SetEndDragHdl( LINK( this, SvxPathTabPage, HeaderEndDrag_Impl ) );
 	Size aSz;