gnome-control-center/panels/sound/cc-sound-button.ui
Georges Basile Stavracas Neto e8bd7c24ee sound: Remove icon from sound theme buttons
Remove the icon and adjust the label to be vertically
centralized.

Fixes https://gitlab.gnome.org/GNOME/gnome-control-center/issues/549
2019-06-16 01:01:36 +00:00

27 lines
942 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<interface>
<!-- interface-requires gtk+ 3.0 -->
<template class="CcSoundButton" parent="GtkToggleButton">
<child>
<object class="GtkBox">
<property name="visible">True</property>
<property name="orientation">vertical</property>
<property name="spacing">12</property>
<property name="valign">center</property>
<child>
<object class="GtkImage" id="image">
<property name="icon_name">audio-speakers-symbolic</property>
<property name="pixel_size">32</property>
</object>
</child>
<child>
<object class="GtkLabel" id="label">
<property name="visible">True</property>
<property name="wrap">True</property>
<property name="wrap_mode">word-char</property>
</object>
</child>
</object>
</child>
</template>
</interface>