diff options
-rwxr-xr-x | assignment-list.py | 2 | ||||
-rw-r--r-- | entry.py | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/assignment-list.py b/assignment-list.py index 8683e79..194f130 100755 --- a/assignment-list.py +++ b/assignment-list.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 import sys import time -from PyQt5.QtWidgets import QAction, QApplication, QHBoxLayout, QLabel, QMainWindow, QMenu, QMessageBox, QPushButton, QScrollArea, QToolBar, QVBoxLayout, QWidget +from PyQt5.QtWidgets import QAction, QApplication, QHBoxLayout, QLabel, QMainWindow, QMenu, QMessageBox, QScrollArea, QToolBar, QVBoxLayout, QWidget from PyQt5.QtGui import QCursor, QFont from PyQt5.QtCore import QDate, Qt from config import Config @@ -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) |