aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--todo/gui/tasks/table/widget.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/todo/gui/tasks/table/widget.py b/todo/gui/tasks/table/widget.py
index 2df2764..9e810af 100644
--- a/todo/gui/tasks/table/widget.py
+++ b/todo/gui/tasks/table/widget.py
@@ -123,7 +123,11 @@ class Widget(QtWidgets.QTableWidget):
def update_row(self, row: int):
task = self._tasks[row]
self.setItem(row, 0, item(age_since(task.created_at)))
- self.setItem(row, 1, item(task.name))
+ if task.description:
+ name = task.name + " *"
+ else:
+ name = task.name
+ self.setItem(row, 1, item(name))
self.setCellWidget(row, 2, colored_label(self, todo.gui.tasks.duration.format(task.duration), todo.gui.tasks.duration.color(task.duration)))
self.setCellWidget(row, 3, colored_label(self, difficulty.format(task.difficulty), difficulty_color(task.difficulty)))
self.setCellWidget(row, 4, colored_label(self, priority.format(task.priority), priority_color(task.priority)))