The `.content` style class is deprecated in favor of the `.boxed-list` style class, which is named after the design pattern it's used for.
15 lines
434 B
XML
15 lines
434 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<interface>
|
|
<!-- interface-requires gtk+ 3.0 -->
|
|
<template class="CcStreamListBox" parent="GtkBox">
|
|
<child>
|
|
<object class="GtkListBox" id="listbox">
|
|
<property name="hexpand">True</property>
|
|
<property name="selection-mode">none</property>
|
|
<style>
|
|
<class name="boxed-list" />
|
|
</style>
|
|
</object>
|
|
</child>
|
|
</template>
|
|
</interface>
|