diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-08-10 16:18:51 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-08-10 16:18:51 +0100 |
commit | f6de74585f8b091f360debb65f2548cd8bc6ea01 (patch) | |
tree | f33cc4c446c415f013f8f5f6e082a660bab4abf8 /src/specific-items-manager.vala | |
parent | 023090260c73fad2f22c8937fad70215d56319d1 (diff) | |
download | ayatana-indicator-sound-f6de74585f8b091f360debb65f2548cd8bc6ea01.tar.gz ayatana-indicator-sound-f6de74585f8b091f360debb65f2548cd8bc6ea01.tar.bz2 ayatana-indicator-sound-f6de74585f8b091f360debb65f2548cd8bc6ea01.zip |
track specific and player specific fixed
Diffstat (limited to 'src/specific-items-manager.vala')
-rw-r--r-- | src/specific-items-manager.vala | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/specific-items-manager.vala b/src/specific-items-manager.vala index e3d17e5..d26199f 100644 --- a/src/specific-items-manager.vala +++ b/src/specific-items-manager.vala @@ -51,8 +51,7 @@ public class SpecificItemsManager : GLib.Object { int result = 0 ; if (this.of_type == category.TRACK){ - int specific_item_count = this.proxy_items.size; - result = this.owner.menu_offset + 4 + specific_item_count; + result = this.owner.menu_offset + 4 + this.proxy_items.size; } else if (this.of_type == category.PLAYER){ int pos = this.owner.menu_offset + 4 + this.owner.track_specific_count(); @@ -70,7 +69,8 @@ public class SpecificItemsManager : GLib.Object foreach(var p in proxy_items){ this.owner.root_menu.child_delete (p); } - this.proxy_items.clear();// = null; + this.proxy_items.clear(); + debug ("array list size is now %i", this.proxy_items.size); //this.proxy_items = new ArrayList<Dbusmenu.MenuitemProxy>(); return; } @@ -82,8 +82,6 @@ public class SpecificItemsManager : GLib.Object // Fetch what children are there already. GLib.List<weak void*> children = root.get_children().copy(); - debug ("on_root_changed - size of children list : %i", - (int)children.length()); foreach (void* child in children) { int pos = figure_out_positioning(); unowned Dbusmenu.Menuitem item = (Dbusmenu.Menuitem)child; |