Explicitly set grid positions in the ui file

We were outsmarted by a combination of gtk-builder-tool
removing default values and GtkGrid guessing good values
for omitted properties.

Fixes: #3080
This commit is contained in:
Matthias Clasen 2020-08-21 16:22:59 -04:00
parent 865b29500c
commit 936f3f1ad9

View File

@ -3140,6 +3140,7 @@ bad things might happen.</property>
<property name="xalign">1</property>
<layout>
<property name="row">1</property>
<property name="column">0</property>
</layout>
</object>
</child>
@ -3166,6 +3167,7 @@ bad things might happen.</property>
<object class="GtkEntry" id="open_popover_entry">
<property name="activates-default">1</property>
<layout>
<property name="row">0</property>
<property name="column">1</property>
<property name="column-span">2</property>
</layout>