From 0c549e33e5ecb524c91dc54acf9906b637e27a3f Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 11 Jun 2011 12:22:40 +0100 Subject: [PATCH] Only mark the service as changed if it has changed Fixes: https://launchpad.net/bugs/795890 --- openlp/core/ui/servicemanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index 004fa2b77..cef2f70bb 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -1086,7 +1086,7 @@ class ServiceManager(QtGui.QWidget): self.repaintServiceList(itemcount + 1, 0) self.mainwindow.liveController.replaceServiceManagerItem( newItem) - self.setModified() + self.setModified() def addServiceItem(self, item, rebuild=False, expand=None, replace=False, repaint=True, selected=False):