diff options
| author | Matthias Clasen <mclasen@redhat.com> | 2015-06-12 10:35:23 (GMT) |
|---|---|---|
| committer | Matthias Clasen <mclasen@redhat.com> | 2015-06-15 00:54:47 (GMT) |
| commit | cfd85dee03509fa88b1c50326ffad6b0446af326 (patch) | |
| tree | cdadf33cb9e18c22f9c5ca86ed9f05172ed79f0c | |
| parent | ef8ad1c7341e1bac7fd36e7e7da0a7a513855f83 (diff) | |
| download | gtk+-cfd85de.zip gtk+-cfd85de.tar.xz | |
assistant: Drop hardcoded padding
This means the pages themselves will be responsible for setting
suitable padding.
https://bugzilla.gnome.org/show_bug.cgi?id=750631
| -rw-r--r-- | gtk/ui/gtkassistant.ui | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/ui/gtkassistant.ui b/gtk/ui/gtkassistant.ui index 59f83c4..a96fa92 100644 --- a/gtk/ui/gtkassistant.ui +++ b/gtk/ui/gtkassistant.ui @@ -10,7 +10,7 @@ <child> <object class="GtkBox" id="main_box"> <property name="visible">True</property> - <property name="spacing">12</property> + <property name="spacing">0</property> <child> <object class="GtkFrame" id="sidebar_frame"> <property name="visible">True</property> @@ -34,9 +34,9 @@ <child> <object class="GtkBox" id="content_box"> <property name="visible">True</property> - <property name="border_width">12</property> + <property name="border_width">0</property> <property name="orientation">vertical</property> - <property name="spacing">12</property> + <property name="spacing">0</property> <child> <object class="GtkNotebook" id="content"> <property name="visible">True</property> |