debugging

This commit is contained in:
Piotr Miller
2021-11-03 14:27:36 +01:00
parent 4dc764857d
commit 7f7a9b6abb

View File

@@ -116,7 +116,7 @@ def check_tree():
def refresh_dwl(*args): def refresh_dwl(*args):
print("refresh_dwl, len(common.dwl_instances = ", len(common.dwl_instances)) print("refresh_dwl, len(common.dwl_instances) = ", len(common.dwl_instances))
if len(common.dwl_instances) > 0: if len(common.dwl_instances) > 0:
dwl_data = load_json(common.dwl_data_file) dwl_data = load_json(common.dwl_data_file)
if dwl_data: if dwl_data:
@@ -203,18 +203,18 @@ def instantiate_content(panel, container, content_list, icons_path=""):
container.pack_start(cpu_avg, False, False, panel["items-padding"]) container.pack_start(cpu_avg, False, False, panel["items-padding"])
if item == "dwl-tags": if item == "dwl-tags":
if os.path.isfile(common.dwl_data_file): #if os.path.isfile(common.dwl_data_file):
if "dwl-tags" not in panel: if "dwl-tags" not in panel:
panel["dwl-tags"] = {} panel["dwl-tags"] = {}
dwl_tags = DwlTags(panel["output"], panel["dwl-tags"]) dwl_tags = DwlTags(panel["output"], panel["dwl-tags"])
common.dwl_instances.append(dwl_tags) common.dwl_instances.append(dwl_tags)
container.pack_start(dwl_tags, False, False, panel["items-padding"]) container.pack_start(dwl_tags, False, False, panel["items-padding"])
dwl_data = load_json(common.dwl_data_file) dwl_data = load_json(common.dwl_data_file)
if dwl_data: if dwl_data:
dwl_tags.refresh(dwl_data) dwl_tags.refresh(dwl_data)
else: #else:
print("{} data file not found".format(common.dwl_data_file)) # print("{} data file not found".format(common.dwl_data_file))
def main(): def main():