aboutsummaryrefslogtreecommitdiff
path: root/src/mpris2-controller.vala
diff options
context:
space:
mode:
authorMarco Trevisan (TreviƱo) <mail@3v1n0.net>2013-04-05 14:29:10 +0000
committerTarmac <Unknown>2013-04-05 14:29:10 +0000
commita83c4b7d257344bff272c169e36736a2205fda31 (patch)
tree25c0ad66b22998c528c05aabcd6d4e9edaf30b1e /src/mpris2-controller.vala
parent63616b0b258f640aa84150913f3d01cd79bb6c65 (diff)
parente6779eca9277231ee59c6441bf6982599a0d611e (diff)
downloadayatana-indicator-sound-a83c4b7d257344bff272c169e36736a2205fda31.tar.gz
ayatana-indicator-sound-a83c4b7d257344bff272c169e36736a2205fda31.tar.bz2
ayatana-indicator-sound-a83c4b7d257344bff272c169e36736a2205fda31.zip
PlayerController use GtkApplicationPlayer and activate it when we need to raise
GtkApplicationPlayer: add a class to handle the GtkApplication players It allows to check if the given player implements the "org.gtk.Application" interface and if it's the case, it Activate the application with the proper timestamp when requested. Fixes: https://bugs.launchpad.net/bugs/627195. Approved by PS Jenkins bot, Lars Uebernickel.
Diffstat (limited to 'src/mpris2-controller.vala')
-rw-r--r--src/mpris2-controller.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mpris2-controller.vala b/src/mpris2-controller.vala
index 5015f80..9230a59 100644
--- a/src/mpris2-controller.vala
+++ b/src/mpris2-controller.vala
@@ -208,9 +208,9 @@ public class Mpris2Controller : GLib.Object
return (this.player != null && this.mpris2_root != null);
}
- public void expose(uint timestamp)
+ public void expose(uint timestmap)
{
- if(this.connected() == true){
+ if (this.connected() == true) {
this.mpris2_root.Raise.begin();
}
}