diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-03-23 12:39:45 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-03-23 12:39:45 -0400 |
commit | 8227400e2d44175c38165182140489adaf69dd7f (patch) | |
tree | 68ea206ec4f66c3da4f19006d168c3e205bd0eb1 /src/voip-input-menu-item.c | |
parent | ab3d1a08d064b423b2e2a3702c3039947bbb810f (diff) | |
parent | f05dff9b5d6c5e921f3056c142068ea7f6f41486 (diff) | |
download | ayatana-indicator-sound-8227400e2d44175c38165182140489adaf69dd7f.tar.gz ayatana-indicator-sound-8227400e2d44175c38165182140489adaf69dd7f.tar.bz2 ayatana-indicator-sound-8227400e2d44175c38165182140489adaf69dd7f.zip |
* New upstream release.
- Media player should be automatically started up when play button is
pressed (LP: #714750)
- volume goes to zero when using some players like banshee or
rhythmbox (LP: #730925)
- handle banshee id change (LP: #737447)
- filter out video playlists (LP: #739273)
Diffstat (limited to 'src/voip-input-menu-item.c')
-rw-r--r-- | src/voip-input-menu-item.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/voip-input-menu-item.c b/src/voip-input-menu-item.c index a92f91c..e645e69 100644 --- a/src/voip-input-menu-item.c +++ b/src/voip-input-menu-item.c @@ -73,7 +73,6 @@ voip_input_menu_item_class_init (VoipInputMenuItemClass *klass) static void voip_input_menu_item_init (VoipInputMenuItem *self) { - g_debug("Building new Slider Menu Item"); dbusmenu_menuitem_property_set( DBUSMENU_MENUITEM(self), DBUSMENU_MENUITEM_PROP_TYPE, DBUSMENU_VOIP_INPUT_MENUITEM_TYPE ); @@ -117,7 +116,9 @@ handle_event (DbusmenuMenuitem * mi, if (value != NULL){ if (IS_VOIP_INPUT_MENU_ITEM (mi)) { VoipInputMenuItemPrivate* priv = VOIP_INPUT_MENU_ITEM_GET_PRIVATE (VOIP_INPUT_MENU_ITEM (mi)); +/* g_debug ("Handle event in the voip input level backend instance - %f", percent); +*/ pa_cvolume new_volume; pa_cvolume_init(&new_volume); new_volume.channels = 1; @@ -167,7 +168,9 @@ voip_input_menu_item_update (VoipInputMenuItem* item, // Only send over the mute updates if the state has changed. // in this order - volume first mute last!! if (priv->mute != source->mute){ +/* g_debug ("voip menu item - update - mute = %i", priv->mute); +*/ GVariant* new_mute_update = g_variant_new_int32 (source->mute); dbusmenu_menuitem_property_set_variant (DBUSMENU_MENUITEM(item), DBUSMENU_VOIP_INPUT_MENUITEM_MUTE, |