diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-19 16:00:28 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-19 16:08:46 +0100 |
commit | d242f46f25341b8cf96caf33d60d6179a05b901e (patch) | |
tree | 1e0549c9c1c0465c1b6e7c0db22736811cd07331 /vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx | |
parent | 72be3521524f1c01842010f26c234f4e6cceb358 (diff) |
HIG: 12 pixels from label to widget in file picker
Change-Id: Ia54eeae792efe65ca03ac08c8f5e70a7643a0b69
Diffstat (limited to 'vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx')
-rw-r--r-- | vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx b/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx index db1a1feb0860..4af3d2580b5e 100644 --- a/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx +++ b/vcl/unx/gtk/fpicker/SalGtkFilePicker.cxx @@ -206,8 +206,8 @@ SalGtkFilePicker::SalGtkFilePicker( const uno::Reference< uno::XComponentContext gtk_container_add( GTK_CONTAINER( m_pAligns[i]), m_pLists[i] ); gtk_box_pack_end( GTK_BOX( m_pHBoxs[i] ), m_pAligns[i], false, false, 0 ); - gtk_box_pack_end( GTK_BOX( m_pHBoxs[i] ), m_pListLabels[i], false, false, 0 ); + gtk_box_set_spacing( GTK_BOX( m_pHBoxs[i] ), 12 ); gtk_box_pack_end( GTK_BOX( m_pVBox ), m_pHBoxs[i], false, false, 0 ); } |