More fixes and update song editing

This commit is contained in:
Tim Bentley 2010-08-21 20:35:32 +01:00
parent 076215435b
commit 9f4066bf3f
2 changed files with 4 additions and 24 deletions

View File

@ -68,17 +68,6 @@ class Ui_AmendThemeDialog(object):
self.backgroundLayout.setMargin(8)
self.backgroundLayout.setSpacing(8)
self.backgroundLayout.setObjectName(u'backgroundLayout')
# self.backgroundLabel = QtGui.QLabel(self.backgroundTab)
# self.backgroundLabel.setObjectName(u'backgroundLabel')
# self.backgroundLayout.setWidget(0, QtGui.QFormLayout.LabelRole,
# self.backgroundLabel)
# self.backgroundComboBox = QtGui.QComboBox(self.backgroundTab)
# self.backgroundComboBox.setObjectName(u'backgroundComboBox')
# self.backgroundLabel.setBuddy(self.backgroundComboBox)
# self.backgroundComboBox.addItem(QtCore.QString())
# self.backgroundComboBox.addItem(QtCore.QString())
# self.backgroundLayout.setWidget(0, QtGui.QFormLayout.FieldRole,
# self.backgroundComboBox)
self.backgroundTypeLabel = QtGui.QLabel(self.backgroundTab)
self.backgroundTypeLabel.setObjectName(u'backgroundTypeLabel')
self.backgroundLayout.setWidget(1, QtGui.QFormLayout.LabelRole,
@ -216,17 +205,6 @@ class Ui_AmendThemeDialog(object):
self.fontMainLineAdjustmentSpinBox.setMinimum(-99)
self.mainFontLayout.setWidget(4, QtGui.QFormLayout.FieldRole,
self.fontMainLineAdjustmentSpinBox)
# self.fontMainWrapIndentationLabel = QtGui.QLabel(self.fontMainGroupBox)
# self.fontMainWrapIndentationLabel.setObjectName(
# u'fontMainWrapIndentationLabel')
# self.mainFontLayout.setWidget(5, QtGui.QFormLayout.LabelRole,
# self.fontMainWrapIndentationLabel)
# self.fontMainLineSpacingSpinBox = QtGui.QSpinBox(self.fontMainGroupBox)
# self.fontMainLineSpacingSpinBox.setObjectName(
# u'fontMainLineSpacingSpinBox')
# self.fontMainLineSpacingSpinBox.setMaximum(10)
# self.mainFontLayout.setWidget(5, QtGui.QFormLayout.FieldRole,
# self.fontMainLineSpacingSpinBox)
self.fontMainLinesPageLabel = QtGui.QLabel(self.fontMainGroupBox)
self.fontMainLinesPageLabel.setObjectName(u'fontMainLinesPageLabel')
self.mainFontLayout.addRow(self.fontMainLinesPageLabel)

View File

@ -314,7 +314,7 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog):
author = self.songmanager.get_object(Author, item_id)
if author in self.song.authors:
QtGui.QMessageBox.warning(self,
translate('SongsPlugin.EditSongForm', 'Error'),
translate('SongsPlugin.EditSongForm', 'Error'),
translate('SongsPlugin.EditSongForm', 'This author is '
'already in the list.'))
else:
@ -422,7 +422,9 @@ class EditSongForm(QtGui.QDialog, Ui_EditSongDialog):
self.VerseDeleteButton.setEnabled(True)
def onVerseAddButtonClicked(self):
self.verse_form.setVerse(u'', True)
# Allow insert button as you do not know if multiple verses will
# be entered.
self.verse_form.setVerse(u'')
if self.verse_form.exec_():
afterText, verse, subVerse = self.verse_form.getVerse()
data = u'%s:%s' % (verse, subVerse)