X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/13e74ce7d8fcccc12bed3ce65c4f35987f206799..395978a710975e43e31d99d9e83bf59cd0c33a3d:/lib/python/Screens/ChannelSelection.py diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index db279451..aee1e35a 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -77,7 +77,7 @@ class ChannelContextMenu(Screen): if not csel.bouquet_mark_edit: if not csel.movemode: menu.append((_("enable move mode"), self.toggleMoveMode)) - menu.append((_("add bouquet"), self.showBouquetInputBox)) + menu.append((_("add bouquet..."), self.showBouquetInputBox)) if not inBouquetRootList: if haveBouquets: menu.append((_("enable bouquet edit"), self.bouquetMarkStart)) @@ -239,6 +239,7 @@ class ChannelSelectionEdit: if mutableBouquet: mutableBouquet.setListName(providerName) mutableBouquet.flushChanges() + self.setRoot(self.getRoot()) else: print "get mutable list for new created bouquet failed" else: @@ -358,13 +359,8 @@ class ChannelSelectionEdit: if ref.valid() and mutableList is not None: if not mutableList.removeService(ref): self.bouquetNumOffsetCache = { } - currentIndex = self.servicelist.getCurrentIndex() - self.servicelist.moveDown() - if self.servicelist.getCurrentIndex() == currentIndex: - currentIndex -= 1 mutableList.flushChanges() #FIXME dont flush on each single removed service self.setRoot(self.getRoot()) - self.servicelist.moveToIndex(currentIndex) def addCurrentServiceToBouquet(self, dest): mutableList = self.getMutableList(dest)