[Libreoffice-commits] core.git: fpicker/source
Andras Timar
andras.timar at collabora.com
Wed Nov 13 03:51:29 PST 2013
fpicker/source/office/PlacesListBox.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 28daf1af06b8c596bf7a88864456a0181f9cee19
Author: Andras Timar <andras.timar at collabora.com>
Date: Wed Nov 13 12:58:09 2013 +0100
fdo#59542 smaller +/- buttons will not be truncated at the bottom
Change-Id: If937d72e5b10bfbf055cf5b9909d50bbf5ddac81
diff --git a/fpicker/source/office/PlacesListBox.cxx b/fpicker/source/office/PlacesListBox.cxx
index 99bb9e1..c3b3818 100644
--- a/fpicker/source/office/PlacesListBox.cxx
+++ b/fpicker/source/office/PlacesListBox.cxx
@@ -71,12 +71,12 @@ PlacesListBox::PlacesListBox( SvtFileDialog* pFileDlg, const OUString& rTitle, c
mpAddBtn = new ImageButton( this, 0 );
mpAddBtn->SetText( OUString( "+" ) );
- mpAddBtn->SetPosSizePixel( Point( 0, 0 ), Size( 24, 24 ) );
+ mpAddBtn->SetPosSizePixel( Point( 0, 0 ), Size( 22, 22 ) );
mpAddBtn->Show();
mpDelBtn = new ImageButton( this, 0 );
mpDelBtn->SetText( OUString( "-" ) );
- mpDelBtn->SetPosSizePixel( Point( 0, 0 ), Size( 24, 24 ) );
+ mpDelBtn->SetPosSizePixel( Point( 0, 0 ), Size( 22, 22 ) );
mpDelBtn->Show();
}
More information about the Libreoffice-commits
mailing list