diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-11-18 11:42:37 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-11-18 14:08:07 +0000 |
commit | 7de38f78fe66b4c5c6d62c59cdd6a38359352998 (patch) | |
tree | 826e4c5a8a9a2561701c19c1f0e15509863dda61 /vcl | |
parent | b211b8b2e14bd961a7b32033468a94cbff52b5c4 (diff) |
HIG seperate primary and secondary text by 24pixels
"Add one line break at the standard font size below both the primary and
secondary text, or 24 pixels if you are using Glade"
Change-Id: I4bdb0eade4de1304a155fe4338c013d1576b8282
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/layout.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/window/layout.cxx b/vcl/source/window/layout.cxx index 5c0264aee44f..111e41bbab29 100644 --- a/vcl/source/window/layout.cxx +++ b/vcl/source/window/layout.cxx @@ -2021,6 +2021,7 @@ short MessageDialog::Execute() m_pGrid = new VclGrid(pContainer); m_pGrid->reorderWithinParent(0); m_pGrid->set_column_spacing(12); + m_pGrid->set_row_spacing(GetTextHeight()); m_pImage = new FixedImage(m_pGrid, WB_CENTER | WB_VCENTER | WB_3DLOOK); switch (m_eMessageType) |