mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-05-09 03:58:05 +02:00
wpctl: Don't stop setting volume by PID if a node does not support volume
This makes sure the volume is applied to all nodes that support volume for a PID.
This commit is contained in:
parent
7fa44ef8d0
commit
67cc35f4f7
1 changed files with 2 additions and 1 deletions
|
|
@ -1176,7 +1176,8 @@ do_set_volume_cb (const GValue *node_val, GValue *ret, gpointer data)
|
|||
{
|
||||
WpCtl * self = data;
|
||||
WpPipewireObject *node = g_value_get_object (node_val);
|
||||
return do_set_volume (self, node);
|
||||
do_set_volume (self, node);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue