grid: Swap wrong spacing properties

row-spacing behaved like column-spacing should have and vice versa.

Also update tests that erroneously checked this behavior.

Thanks to Joanmarie Diggs for finding this.
This commit is contained in:
Benjamin Otte
2011-08-30 15:11:02 +02:00
parent b314f03bf4
commit d717a2dcfc
3 changed files with 10 additions and 10 deletions

View File

@ -13,7 +13,7 @@
<object class="GtkGrid" id="grid0">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="row-spacing">20</property>
<property name="column-spacing">20</property>
<child>
<object class="GtkLabel" id="one">
<property name="visible">True</property>

View File

@ -13,7 +13,7 @@
<object class="GtkGrid" id="grid0">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="column-spacing">20</property>
<property name="row-spacing">20</property>
<child>
<object class="GtkLabel" id="one">
<property name="visible">True</property>