mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
5bebbb06fa
This test check that resizing the window when expanding the expander yields the same end result as having the expander expanded to begin with. The test uses the inhibit mechanism introduced in the previous commit.
22 lines
682 B
XML
22 lines
682 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<!-- interface-requires gtk+ 3.0 -->
|
|
<object class="GtkWindow" id="window1">
|
|
<property name="can_focus">False</property>
|
|
<property name="visible">True</property>
|
|
<child>
|
|
<object class="GtkExpander" id="expander1">
|
|
<property name="visible">True</property>
|
|
<property name="expanded">True</property>
|
|
<property name="label">Hello</property>
|
|
<child>
|
|
<object class="GtkLabel">
|
|
<property name="visible">True</property>
|
|
<property name="label">Hello</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</interface>
|