This commit is contained in:
Dmitriy Marmyshev 2013-09-04 07:51:53 +04:00
parent 25ed0ab4d7
commit 2900e756fd
1 changed files with 1 additions and 1 deletions

View File

@ -1400,7 +1400,7 @@ class ServiceManager(QtGui.QWidget, ServiceManagerDialog):
if not self.service_items[item][u'service_item'].is_capable(ItemCapabilities.CanEditTitle):
return
title = self.service_items[item][u'service_item'].title
title, ok = QtGui.QInputDialog.getText(self, self.tr(translate('OpenLP.ServiceManager', 'Input title')),
title, ok = QtGui.QInputDialog.getText(self, self.tr(translate('OpenLP.ServiceManager', 'Rename item title')),
self.tr(translate('OpenLP.ServiceManager', 'Title')), QtGui.QLineEdit.Normal, self.trUtf8(title))
if ok:
self.service_items[item][u'service_item'].title = unicode(title)