From 5a9752b71c90d82342dff8138b25f6af2dcb6b28 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Fri, 28 Feb 2014 17:01:11 -0600 Subject: Some debugging information --- src/sound-menu.vala | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/sound-menu.vala b/src/sound-menu.vala index 480e1cf..62f510d 100644 --- a/src/sound-menu.vala +++ b/src/sound-menu.vala @@ -123,16 +123,20 @@ class SoundMenu: Object /* returns the position in this.menu of the section that's associated with @player */ int find_player_section (MediaPlayer player) { + debug("Looking for player: %s", player.id); string action_name = @"indicator.$(player.id)"; int n = this.menu.get_n_items () -1; for (int i = 1; i < n; i++) { var section = this.menu.get_item_link (i, Menu.LINK_SECTION); + if (section == null) continue; + string action; section.get_item_attribute (0, "action", "s", out action); if (action == action_name) return i; } + debug("Unable to find section for player: %s", player.id); return -1; } @@ -140,6 +144,8 @@ class SoundMenu: Object var section = new Menu (); Icon icon; + debug("Adding section for player: %s", player.id); + icon = player.icon; if (icon == null) icon = new ThemedIcon.with_default_fallbacks ("application-default-icon"); -- cgit v1.2.3