From 65bcba35593fce19dc95d325a0ca835d926ffb95 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Tue, 29 Nov 2022 02:46:49 -0500 Subject: [PATCH] Little thingamabobber --- draw.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/draw.go b/draw.go index 17b8719..1a6f902 100644 --- a/draw.go +++ b/draw.go @@ -68,6 +68,8 @@ func drawMonth (xOffset, yOffset, year int, month time.Month) { if current && dayIter == int(time.Now().Day()) { application.SetColor(x, y, stone.ColorRed) application.SetColor(x + 1, y, stone.ColorRed) + application.SetStyle(x , y, stone.StyleHighlight) + application.SetStyle(x + 1, y, stone.StyleHighlight) } else if weekday == 0 || weekday == 6 { application.SetColor(x, y, stone.ColorDim) application.SetColor(x + 1, y, stone.ColorDim)