From b4ca417b7e02f7cabba6689dc63eb7b733164fdf Mon Sep 17 00:00:00 2001 From: Louie S Date: Mon, 18 Sep 2023 14:31:14 -0400 Subject: rules working --- src/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main.py') diff --git a/src/main.py b/src/main.py index 008e310..fed6830 100644 --- a/src/main.py +++ b/src/main.py @@ -186,9 +186,9 @@ class AssignmentList(QMainWindow): def editRules(self, id): pass - need_redraw = RulesDialog(id) - if need_redraw: - self.drawGroups() + need_reload = RulesDialog(id) + if need_reload: + self.reload() def entryContextMenu(self, entry_id): menu = QMenu() -- cgit