diff options
| author | Sebastien Bacher <seb128@ubuntu.com> | 2010-07-12 19:45:06 +0200 |
|---|---|---|
| committer | Bazaar Package Importer <james.westby@ubuntu.com> | 2010-07-12 19:45:06 +0200 |
| commit | df2aaa5b8d38ec4385f5be6bedfd143317d9e015 (patch) | |
| tree | 0b7bbb46adea718590192731eaad1f152571b6e6 /src/title-menu-item.vala | |
| parent | 9c00e0247f69c00c1e855a42e82bfd767b16b607 (diff) | |
| parent | 69f91546fb17d7209e5267a5ce7e0ae6b9bbd9d9 (diff) | |
| download | ayatana-indicator-sound-df2aaa5b8d38ec4385f5be6bedfd143317d9e015.tar.gz ayatana-indicator-sound-df2aaa5b8d38ec4385f5be6bedfd143317d9e015.tar.bz2 ayatana-indicator-sound-df2aaa5b8d38ec4385f5be6bedfd143317d9e015.zip | |
New upstream release.
Diffstat (limited to 'src/title-menu-item.vala')
| -rw-r--r-- | src/title-menu-item.vala | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/title-menu-item.vala b/src/title-menu-item.vala index 612d279..8183821 100644 --- a/src/title-menu-item.vala +++ b/src/title-menu-item.vala @@ -23,15 +23,16 @@ using Gee; public class TitleMenuitem : PlayerItem { - public TitleMenuitem(PlayerController parent, string name) + public TitleMenuitem(PlayerController parent) { Object(item_type: MENUITEM_TYPE, owner: parent); - this.property_set(MENUITEM_TEXT_NAME, name); + this.property_set(MENUITEM_TEXT_NAME, parent.name); } public override void handle_event(string name, GLib.Value input_value, uint timestamp) { - debug("handle_event with bool value %s", input_value.get_boolean().to_string()); + debug("handle_event for owner %s with owner state = %i and title menu name %s", this.owner.name, this.owner.current_state, property_get(MENUITEM_TEXT_NAME)); + if(this.owner.current_state == PlayerController.state.OFFLINE) { this.owner.instantiate(); |
