From b71d3e9e5378025126870ce8afd60c0a75fb7c0c Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Thu, 18 Apr 2013 19:50:39 +0200 Subject: [PATCH] fixed bug-1170435 Fixes: https://launchpad.net/bugs/1170435 --- openlp/plugins/songs/forms/editsongform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py index 49a20762a..beddee475 100644 --- a/openlp/plugins/songs/forms/editsongform.py +++ b/openlp/plugins/songs/forms/editsongform.py @@ -697,7 +697,7 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog): for verse in verses: if not verse in order: verses_not_used.append(verse) - self.warning_label.setVisible(len(verses_not_used) > 0) + self.warning_label.setVisible(len(verses_not_used) > 0 and bool(text)) def on_copyright_insert_button_triggered(self): text = self.copyright_edit.text()