mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-05 16:09:07 -04:00
GtkBuilder XML uses enum nicknames, full names, or integer values, but we accept GIR names, so passing those through doesn't work if the name has an underscore (which traditionally turns into a dash in the nickname). Avoid the problem by always writing the integer value of the enum member.
10 lines
284 B
XML
10 lines
284 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<requires lib="gtk" version="4.0"/>
|
|
<object class="GApplication">
|
|
<property name="flags">1|4</property>
|
|
</object>
|
|
<object class="GtkEventControllerScroll">
|
|
<property name="flags">1</property>
|
|
</object>
|
|
</interface>
|