mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 08:40:08 +00:00
f3ed498c5b
In widget hierarchy like "Foo Bar Bar Baz", we want the selector "Foo > Bar Baz" to match, because it matches the elements 1, 2 and 4. Previously, the selector only matches the Bar at position 3 and then failed because it wasn't preceded by a Foo.
20 lines
605 B
XML
20 lines
605 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="type">popup</property>
|
|
<child>
|
|
<object class="GtkEventBox" id="eventbox1">
|
|
<property name="width_request">10</property>
|
|
<property name="height_request">10</property>
|
|
<property name="visible">True</property>
|
|
<property name="can_focus">False</property>
|
|
<child>
|
|
<placeholder/>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</interface>
|