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.
23 lines
771 B
XML
23 lines
771 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>
|
|
<child>
|
|
<object class="GtkExpander" id="expander1">
|
|
<property name="visible">True</property>
|
|
<property name="expanded">False</property>
|
|
<property name="label">Hello</property>
|
|
<property name="resize_toplevel">True</property>
|
|
<signal name="map" handler="reftest:expand_expander" swapped="no"/>
|
|
<child>
|
|
<object class="GtkLabel">
|
|
<property name="visible">True</property>
|
|
<property name="label">Hello</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</interface>
|