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()