gnome-control-center/panels/common/cc-list-row.ui
Marco Melorio 2a33247f52 common: Remove switch feature to CcListRow
AdwSwitchRow should be used now instead.
2023-06-30 09:06:56 +00:00

32 lines
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<interface>
<template class="CcListRow" parent="AdwActionRow">
<property name="activatable">True</property>
<!-- Secondary Label -->
<child type="suffix">
<object class="GtkLabel" id="secondary_label">
<property name="valign">center</property>
<property name="hexpand">True</property>
<property name="halign">end</property>
<property name="ellipsize">end</property>
<property name="wrap">True</property>
<property name="lines">4</property>
<property name="selectable" bind-source="CcListRow" bind-property="activatable" bind-flags="sync-create|invert-boolean" />
<style>
<class name="dim-label"/>
</style>
</object>
</child>
<!-- Arrow -->
<child type="suffix">
<object class="GtkImage" id="arrow">
<property name="visible" bind-source="CcListRow" bind-property="show-arrow" bind-flags="sync-create"/>
<property name="valign">center</property>
<property name="icon-name">go-next-symbolic</property>
</object>
</child>
</template>
</interface>