Ensure proper spacing around icons in message dialogs

We had a margin of 30 before/after the text. Put that add around
the icon as well, and separate the icon and text by 30 pixels.
This does not affect the appearance of message dialogs without
icons.
This commit is contained in:
Matthias Clasen 2014-03-18 19:50:59 -04:00
parent f5dc69ab8e
commit 5c10e8409f

View File

@ -26,13 +26,13 @@
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">False</property> <property name="can_focus">False</property>
<property name="border_width">0</property> <property name="border_width">0</property>
<property name="spacing">12</property> <property name="margin_start">30</property>
<property name="margin_end">30</property>
<property name="spacing">30</property>
<child> <child>
<object class="GtkBox" id="message_area"> <object class="GtkBox" id="message_area">
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">False</property> <property name="can_focus">False</property>
<property name="margin_start">30</property>
<property name="margin_end">30</property>
<property name="orientation">vertical</property> <property name="orientation">vertical</property>
<property name="spacing">10</property> <property name="spacing">10</property>
<child> <child>