Convert lowercase verse order to uppercase automatically

Fixes: https://launchpad.net/bugs/1530354
This commit is contained in:
Samuel Mehrbrodt 2016-01-05 16:42:07 +01:00
parent c47d1bdca4
commit 0cd2bbff36
1 changed files with 2 additions and 0 deletions

View File

@ -803,6 +803,8 @@ class EditSongForm(QtWidgets.QDialog, Ui_EditSongDialog, RegistryProperties):
:param text: The text of the verse order edit (ignored).
"""
# First make sure that all letters entered in the verse order field are uppercase
self.verse_order_edit.setText(text.upper())
# Extract all verses which were used in the order.
verses_in_order = self._extract_verse_order(self.verse_order_edit.text())
# Find the verses which were not used in the order.