mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2026-07-07 21:43:17 +02:00
fixed removal after creating a new bouquet
This commit is contained in:
@@ -33,7 +33,7 @@ SERVICE_TYPE = {"-2": "Unknown", "1": "TV", "2": "Radio", "3": "Data",
|
||||
"10": "Radio", "12": "Data", "22": "TV", "25": "TV (HD)",
|
||||
"136": "Data", "139": "Data"}
|
||||
|
||||
CAS = {"C:2600": "BISS", "C:0B00": "Conax", "C:0B01": "Conax", "C:0B02": "Conax", "C:0BAA": "Conax", "C:0602": "Irdeto",
|
||||
CAS = {"C:2600": "BISS", "C:0b00": "Conax", "C:0b01": "Conax", "C:0b02": "Conax", "C:0baa": "Conax", "C:0602": "Irdeto",
|
||||
"C:0604": "Irdeto", "C:0606": "Irdeto", "C:0608": "Irdeto", "C:0622": "Irdeto", "C:0626": "Irdeto",
|
||||
"C:0664": "Irdeto", "C:0614": "Irdeto", "C:0692": "Irdeto", "C:1801": "Nagravision", "C:0500": "Viaccess",
|
||||
"C:0E00": "PowerVu", "C:4AE0": "DRE-Crypt", "C:4AE1": "DRE-Crypt", "C:7be1": "DRE-Crypt"}
|
||||
"C:0E00": "PowerVu", "C:4ae0": "DRE-Crypt", "C:4ae1": "DRE-Crypt", "C:7be1": "DRE-Crypt"}
|
||||
|
||||
@@ -505,7 +505,7 @@ class MainAppWindow:
|
||||
def_val = "Unknown"
|
||||
values = model.get_value(model.get_iter(path), 0).split(",")
|
||||
cas_values = list(filter(lambda val: val.startswith("C:"), values))
|
||||
self.__cas_label.set_text(",".join(map(str, [CAS.get(val, def_val) for val in cas_values])))
|
||||
self.__cas_label.set_text(",".join(map(str, sorted(set(CAS.get(val, def_val) for val in cas_values)))))
|
||||
|
||||
def on_fav_selection(self, model, path, column):
|
||||
self.delete_selection(self.__services_view)
|
||||
|
||||
Reference in New Issue
Block a user