diff options
author | Louie S <louie@example.com> | 2023-09-16 09:36:14 -0400 |
---|---|---|
committer | Louie S <louie@example.com> | 2023-09-16 09:36:14 -0400 |
commit | 5ec8db4908fab13292c9b030f92e2468b9460e99 (patch) | |
tree | 64bd1fb7f5ee65d86b3547e44b0cecb668020dad /entry.py | |
parent | 20979244067ca2068d5f2bb9500cdfcbca18842e (diff) |
Color completed entries green
Diffstat (limited to 'entry.py')
-rw-r--r-- | entry.py | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -26,6 +26,16 @@ class Entry: if self.done: bullet.setText("\u2713 ") + bullet.setStyleSheet(""" + QLabel{ + color: green; + } + """) + body.setStyleSheet(""" + QLabel{ + color: green; + } + """) else: bullet.setText("- ") output.addWidget(bullet) |