diff options
author | Joris | 2020-07-05 10:48:20 +0200 |
---|---|---|
committer | Joris | 2020-07-05 10:48:20 +0200 |
commit | 971b6486fa98085fe7ed698bb6b4bc476bc8beaa (patch) | |
tree | 40b0cb0bac4602076859dc67a3d6a7139c526f29 | |
parent | 4e923888896798da6db7b50c75ee31fcc5119e16 (diff) |
Augment height of task table rows
-rw-r--r-- | todo/gui/tasks/table/widget.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/todo/gui/tasks/table/widget.py b/todo/gui/tasks/table/widget.py index 6d19b6f..2df2764 100644 --- a/todo/gui/tasks/table/widget.py +++ b/todo/gui/tasks/table/widget.py @@ -130,7 +130,7 @@ class Widget(QtWidgets.QTableWidget): tag_ids = [tt.tag_id for tt in self._task_tags if tt.task_id == task.id] res_tags = sorted([tag for tag in self._tags if tag.id in tag_ids], key=lambda t: t.name) self.setCellWidget(row, 5, render_tags(self, res_tags)) - self.setRowHeight(row, 45) + self.setRowHeight(row, 50) def insert(self, task: Task, tags: List[int]) -> int: is_rev = self.is_reversed() |