Add a test for bin child conversion

This commit is contained in:
Matthias Clasen 2020-05-01 18:06:57 -04:00
parent dec5707ca9
commit d8e47383cb
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<object class="GtkFrame">
<property name="visible">0</property>
<property name="label">bla</property>
<child>
<object class="GtkGestureClick"/>
</child>
<property name="child">
<object class="GtkButton">
<property name="visible">0</property>
</object>
</property>
</object>
</interface>

View File

@ -0,0 +1,13 @@
<interface>
<object class="GtkFrame">
<property name="label">bla</property>
<child>
<object class="GtkGestureClick">
</object>
</child>
<child>
<object class="GtkButton">
</object>
</child>
</object>
</interface>