[gnome-media/gnome-2-30] Show a microphone icon even if the stream has no ID
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-media/gnome-2-30] Show a microphone icon even if the stream has no ID
- Date: Thu, 10 Jun 2010 13:59:48 +0000 (UTC)
commit 23f2b45b0d152c115efbcdb72f37c2a75351bbf6
Author: Bastien Nocera <hadess hadess net>
Date: Thu Jun 10 14:56:39 2010 +0100
Show a microphone icon even if the stream has no ID
Just because the stream has no ID doesn't mean that we shouldn't
show the microphone icon.
gnome-volume-control/src/gvc-applet.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/gnome-volume-control/src/gvc-applet.c b/gnome-volume-control/src/gvc-applet.c
index 8de0f43..1b311e4 100644
--- a/gnome-volume-control/src/gvc-applet.c
+++ b/gnome-volume-control/src/gvc-applet.c
@@ -94,8 +94,10 @@ maybe_show_status_icons (GvcApplet *applet)
const char *id;
id = gvc_mixer_stream_get_application_id (s);
- if (id == NULL)
- continue;
+ if (id == NULL) {
+ show = TRUE;
+ break;
+ }
if (!g_str_equal (id, "org.gnome.VolumeControl") &&
!g_str_equal (id, "org.PulseAudio.pavucontrol")) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]