summaryrefslogtreecommitdiff
path: root/group.py
diff options
context:
space:
mode:
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()