strange pyqt fix

This commit is contained in:
Andreas Preikschat 2014-04-14 21:07:01 +02:00
parent 2c8d163b09
commit a07a97f78b
1 changed files with 3 additions and 1 deletions

View File

@ -1489,9 +1489,11 @@ class ServiceManager(OpenLPMixin, RegistryMixin, QtGui.QWidget, Ui_ServiceManage
if new_item:
self.add_service_item(new_item, replace=True)
def on_service_item_rename(self):
def on_service_item_rename(self, field=None):
"""
Opens a dialog to rename the service item.
:param field: Not used, but PyQt needs this.
"""
item = self.find_service_item()[0]
if not self.service_items[item]['service_item'].is_capable(ItemCapabilities.CanEditTitle):