From d46771019a0ecce0716b64c783b48eb064ecfca4 Mon Sep 17 00:00:00 2001 From: Marin Visscher Date: Mon, 23 Dec 2024 10:33:47 +0100 Subject: [PATCH] Hide uncertainty on CF table load --- activity_browser/layouts/tabs/impact_categories.py | 1 + 1 file changed, 1 insertion(+) diff --git a/activity_browser/layouts/tabs/impact_categories.py b/activity_browser/layouts/tabs/impact_categories.py index 7270cec29..bd2b74255 100644 --- a/activity_browser/layouts/tabs/impact_categories.py +++ b/activity_browser/layouts/tabs/impact_categories.py @@ -39,6 +39,7 @@ def __init__(self, parent, method_tuple): self.method = bd.Method(method_tuple) self.cf_table.model.load(self.method) + self.cf_table.hide_uncertain() self.cf_table.show() self.panel.select_tab(self)