From 16866cadb266001268b20a90839fb0be2770b24a Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 23 Sep 2007 22:28:39 +0000 Subject: drop logical device name from mixer device, since it should not be shown to the user git-svn-id: file:///home/lennart/svn/public/gst-pulse/trunk@65 bb39ca4e-bce3-0310-b5d4-eea78a553289 --- src/pulsemixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pulsemixer.c b/src/pulsemixer.c index 3f6342e..3352c1d 100644 --- a/src/pulsemixer.c +++ b/src/pulsemixer.c @@ -201,7 +201,7 @@ static void gst_pulsemixer_get_property( case PROP_DEVICE_NAME: if (this->mixer) { - char *t = g_strdup_printf("%s - %s [%s]", this->mixer->type == GST_PULSEMIXER_SINK ? "Playback" : "Capture", this->mixer->description, this->mixer->name); + char *t = g_strdup_printf("%s: %s", this->mixer->type == GST_PULSEMIXER_SINK ? "Playback" : "Capture", this->mixer->description); g_value_set_string(value, t); g_free(t); } else -- cgit