From ca4efd13df1f0552b1a19da54abc2343b61cfed1 Mon Sep 17 00:00:00 2001 From: Prathyush Thota Date: Sat, 21 Mar 2009 13:18:47 +0530 Subject: [PATCH] Fixed play() to play first track of the visible view. --- xulmus/content/player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xulmus/content/player.js b/xulmus/content/player.js index 92322f93..beac81f1 100755 --- a/xulmus/content/player.js +++ b/xulmus/content/player.js @@ -187,7 +187,7 @@ function Player() // {{{ play: function play() { - gMM.sequencer.play(); + gMM.sequencer.playView(SBGetBrowser().currentMediaListView, 0); }, stop: function stop()