summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2013-11-13 12:58:09 +0100
committerAndras Timar <andras.timar@collabora.com>2013-11-13 13:00:08 +0100
commit28daf1af06b8c596bf7a88864456a0181f9cee19 (patch)
treecd05e99bc70f9d18a28a2cff47070485a60aa15b /fpicker
parent1eefdd83c153a312c2af7fb66af3430cd269284c (diff)
fdo#59542 smaller +/- buttons will not be truncated at the bottom
Change-Id: If937d72e5b10bfbf055cf5b9909d50bbf5ddac81
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/PlacesListBox.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/fpicker/source/office/PlacesListBox.cxx b/fpicker/source/office/PlacesListBox.cxx
index 99bb9e164586..c3b381888929 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();
}