diff --git a/openlp/core/ui/media/vlcplayer.py b/openlp/core/ui/media/vlcplayer.py index 93f02a344..5b9e3f414 100644 --- a/openlp/core/ui/media/vlcplayer.py +++ b/openlp/core/ui/media/vlcplayer.py @@ -88,7 +88,8 @@ VIDEO_EXT = [ u'*.dts', u'*.xa', u'*.iso', - u'*.vob' + u'*.vob', + u'*.webm' ] diff --git a/openlp/plugins/remotes/html/openlp.css b/openlp/plugins/remotes/html/openlp.css index 99d1eb1e7..ea8c79e31 100644 --- a/openlp/plugins/remotes/html/openlp.css +++ b/openlp/plugins/remotes/html/openlp.css @@ -31,3 +31,8 @@ .ui-icon-unblank { background-image: url(images/ui-icon-unblank.png); } + +/* Overwrite style from jquery-mobile.css */ +.ui-li .ui-btn-text a.ui-link-inherit{ + white-space: normal; +} diff --git a/openlp/plugins/songs/lib/songimport.py b/openlp/plugins/songs/lib/songimport.py index e22cf8ab8..c25e6d251 100644 --- a/openlp/plugins/songs/lib/songimport.py +++ b/openlp/plugins/songs/lib/songimport.py @@ -274,9 +274,10 @@ class SongImport(QtCore.QObject): """ Repeat the previous verse in the verse order """ - self.verseOrderListGenerated.append( - self.verseOrderListGenerated[-1]) - self.verseOrderListGeneratedUseful = True + if self.verseOrderListGenerated: + self.verseOrderListGenerated.append( + self.verseOrderListGenerated[-1]) + self.verseOrderListGeneratedUseful = True def checkComplete(self): """