summaryrefslogtreecommitdiff
path: root/group.py
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-09-16 09:36:14 -0400
committerLouie S <louie@example.com>2023-09-16 09:36:14 -0400
commit11db353ea4cac33caccb005be7d4b72671f20ad9 (patch)
tree18b89d43ff41ef823404844f09bf06aee0f4b2ed /group.py
parentf2ca02a9230621d0968b8df129051e332339b768 (diff)
removing (hiding) groups working
Diffstat (limited to 'group.py')
-rw-r--r--group.py3
1 files changed, 2 insertions, 1 deletions
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()