diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2010-07-08 19:31:44 +0200 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2010-07-08 19:31:44 +0200 |
commit | cf5205162e421080c511428f54cb18d60cd05568 (patch) | |
tree | f096e69514b8849f40d73beb3f8cf6646a63f5b8 /src/metadata-menu-item.vala | |
parent | f881060f5a83bea46484083c53ee9b78f01d5d77 (diff) | |
parent | 964106d9c8c140d9c27a22aca8078dfdab57c5e9 (diff) | |
download | ayatana-indicator-sound-cf5205162e421080c511428f54cb18d60cd05568.tar.gz ayatana-indicator-sound-cf5205162e421080c511428f54cb18d60cd05568.tar.bz2 ayatana-indicator-sound-cf5205162e421080c511428f54cb18d60cd05568.zip |
* New upstream release:
-New transport widget integrated
-New title widget integrated which allows the user
to launch familiar app directly from the menu
- UI tidied
- Each player that registers with the menu will be stored in the
cache file allowing the menu to show the application even if it has
not been launched.
Diffstat (limited to 'src/metadata-menu-item.vala')
-rw-r--r-- | src/metadata-menu-item.vala | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/metadata-menu-item.vala b/src/metadata-menu-item.vala index 541fbf4..cfcb3bc 100644 --- a/src/metadata-menu-item.vala +++ b/src/metadata-menu-item.vala @@ -25,7 +25,7 @@ public class MetadataMenuitem : PlayerItem { public MetadataMenuitem() { - this.property_set(MENUITEM_PROP_TYPE, MENUITEM_TYPE); + Object(item_type: MENUITEM_TYPE); } public static HashSet<string> attributes_format() @@ -37,11 +37,6 @@ public class MetadataMenuitem : PlayerItem attrs.add(MENUITEM_ARTURL); return attrs; } - - public override void check_layout(){ - this.property_set_bool(MENUITEM_PROP_VISIBLE, this.populated()); - debug("check layout for the metadata = %s", this.populated().to_string()); - } public bool populated() { |