mirror of
https://gitlab.freedesktop.org/pulseaudio/pavucontrol.git
synced 2026-05-07 14:18:33 +02:00
cardwidget: Fix bluetooth codec combobox alignment
Center looks strange, so we use fill and a little more margin to make things look a little better. Credit to psykose <alice@ayaya.dev> for first identifying the problem and proposing a fix.
This commit is contained in:
parent
c70cdeed74
commit
f4079c616e
1 changed files with 17 additions and 11 deletions
|
|
@ -60,22 +60,28 @@
|
|||
<child>
|
||||
<object class="GtkBox">
|
||||
<property name="valign">center</property>
|
||||
<property name="spacing">6</property>
|
||||
<property name="spacing">12</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="label" translatable="yes"><b>Profile:</b></property>
|
||||
<property name="use_markup">1</property>
|
||||
<property name="xalign">0</property>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBox" id="profileList">
|
||||
<property name="hexpand">1</property>
|
||||
<object class="GtkBox" id="profileBox">
|
||||
<property name="halign">fill</property>
|
||||
<property name="spacing">6</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
<property name="label" translatable="yes"><b>Profile:</b></property>
|
||||
<property name="use_markup">1</property>
|
||||
<property name="xalign">0</property>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkComboBox" id="profileList">
|
||||
<property name="hexpand">1</property>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkBox" id="codecBox">
|
||||
<property name="halign">center</property>
|
||||
<property name="halign">fill</property>
|
||||
<property name="spacing">6</property>
|
||||
<child>
|
||||
<object class="GtkLabel">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue