diff options
author | Conor Curran <conor.curran@canonical.com> | 2010-09-02 18:04:41 +0100 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2010-09-02 18:04:41 +0100 |
commit | 0125f59bd6229cc8c98314b86795814ca5df6c42 (patch) | |
tree | 12d4f35061b5b9cd820ab7b8846c7fdf7070d008 /src/title-menu-item.vala | |
parent | 966137c8c0547f1c749fa7b13955c6f536539129 (diff) | |
download | ayatana-indicator-sound-0125f59bd6229cc8c98314b86795814ca5df6c42.tar.gz ayatana-indicator-sound-0125f59bd6229cc8c98314b86795814ca5df6c42.tar.bz2 ayatana-indicator-sound-0125f59bd6229cc8c98314b86795814ca5df6c42.zip |
active triangle now in place
Diffstat (limited to 'src/title-menu-item.vala')
-rw-r--r-- | src/title-menu-item.vala | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/title-menu-item.vala b/src/title-menu-item.vala index ec1cc62..bb3d103 100644 --- a/src/title-menu-item.vala +++ b/src/title-menu-item.vala @@ -27,6 +27,7 @@ public class TitleMenuitem : PlayerItem { Object(item_type: MENUITEM_TYPE, owner: parent); this.property_set(MENUITEM_NAME, parent.name); + this.property_set_bool(MENUITEM_RUNNING, false); } public override void handle_event(string name, GLib.Value input_value, uint timestamp) @@ -39,7 +40,11 @@ public class TitleMenuitem : PlayerItem this.owner.mpris_bridge.expose(); } } - + + public void toggle_active_triangle(bool update) + { + this.property_set_bool(MENUITEM_RUNNING, update); + } public static HashSet<string> attributes_format() { |