Comment adjutments

This commit is contained in:
Miguel Jacq 2025-12-03 15:14:27 +11:00
parent f8909d7fcb
commit 8823a304cf
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9
2 changed files with 1 additions and 2 deletions

View file

@ -356,7 +356,6 @@ class MarkdownHighlighter(QSyntaxHighlighter):
for m in re.finditer(r"[☐☑]", text):
self._overlay_range(m.start(), 1, self.checkbox_format)
# (If you add Unicode bullets later…)
for m in re.finditer(r"", text):
self._overlay_range(m.start(), 1, self.bullet_format)

View file

@ -151,7 +151,7 @@ class DateHeatmap(QWidget):
fm = painter.fontMetrics()
# --- weekday labels on left -------------------------------------
# Python's weekday(): Monday=0 ... Sunday=6, same as your rows.
# Python's weekday(): Monday=0 ... Sunday=6
weekday_labels = ["M", "T", "W", "T", "F", "S", "S"]
for dow in range(7):