From c135028b4664768bdaa8e2a433f2524ecb015a8c Mon Sep 17 00:00:00 2001 From: Olli Suutari Date: Sun, 4 Jun 2017 15:26:50 +0300 Subject: [PATCH] Fixed bug https://bugs.launchpad.net/openlp/+bug/1666272 By renaming: self.playerlist.next() to self.playlist.next() in maindisplay.py derf next(self) --- openlp/core/ui/maindisplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index a40ade826..23151395c 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -689,7 +689,7 @@ class AudioPlayer(OpenLPMixin, QtCore.QObject): """ Skip forward to the next track in the list """ - self.playerlist.next() + self.playlist.next() def go_to(self, index): """