diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-03-16 12:38:04 +0000 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-03-16 12:38:04 +0000 |
commit | a893dae8a5ab7f5f02e8eb1d1db626c135b3383d (patch) | |
tree | 908eff545add881018d8318d8e187c757a13865c /src/pulseaudio-mgr.c | |
parent | 205489a9c85c3c3d5d2caa7f48850cf04f29a70d (diff) | |
download | ayatana-indicator-sound-a893dae8a5ab7f5f02e8eb1d1db626c135b3383d.tar.gz ayatana-indicator-sound-a893dae8a5ab7f5f02e8eb1d1db626c135b3383d.tar.bz2 ayatana-indicator-sound-a893dae8a5ab7f5f02e8eb1d1db626c135b3383d.zip |
keyhandling for the voip slider now working and voip slider now activated when app role is also production
Diffstat (limited to 'src/pulseaudio-mgr.c')
-rw-r--r-- | src/pulseaudio-mgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulseaudio-mgr.c b/src/pulseaudio-mgr.c index 8811bcf..95f4c06 100644 --- a/src/pulseaudio-mgr.c +++ b/src/pulseaudio-mgr.c @@ -483,7 +483,7 @@ pm_sink_input_info_callback (pa_context *c, g_debug ("Sink input info has media role property"); const char* value = pa_proplist_gets (info->proplist, PA_PROP_MEDIA_ROLE); g_debug ("prop role = %s", value); - if (g_strcmp0 (value, "phone") == 0) { + if (g_strcmp0 (value, "phone") == 0 || g_strcmp0 (value, "production") == 0) { g_debug ("And yes its a VOIP app ... sink input index = %i", info->index); device_activate_voip_item (a_sink, (gint)info->index, (gint)info->client); // TODO to start with we will assume our source is the same as what this 'client' |