From 11db353ea4cac33caccb005be7d4b72671f20ad9 Mon Sep 17 00:00:00 2001 From: Louie S Date: Sat, 16 Sep 2023 09:36:14 -0400 Subject: removing (hiding) groups working --- group.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'group.py') diff --git a/group.py b/group.py index 07206eb..df194b8 100644 --- a/group.py +++ b/group.py @@ -4,11 +4,12 @@ from PyQt5.QtWidgets import QLabel, QVBoxLayout Globals = __import__("globals") class Group: - def __init__(self, id, name, column = "left", link = ""): + def __init__(self, id, name, column = "left", link = "", hidden = False): self.id = id self.name = name self.column = column self.link = link + self.hidden = hidden def buildLayout(self): output = QVBoxLayout() -- cgit