aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.go
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2021-11-13 12:07:00 +0900
committernsfisis <nsfisis@gmail.com>2021-11-13 12:07:00 +0900
commit7f4e56cb3485bf9390633533428e2c5015741631 (patch)
treeb9c69a938cdbaeec67310384b5319759fe1346a9 /main.go
parent09e13fbf0462e801626d259ae901d5f430d7ebdf (diff)
downloadbig-clock-mode-7f4e56cb3485bf9390633533428e2c5015741631.tar.gz
big-clock-mode-7f4e56cb3485bf9390633533428e2c5015741631.tar.zst
big-clock-mode-7f4e56cb3485bf9390633533428e2c5015741631.zip
invalidate screen after rendering
Diffstat (limited to 'main.go')
-rw-r--r--main.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.go b/main.go
index 9841b34..332e910 100644
--- a/main.go
+++ b/main.go
@@ -186,6 +186,7 @@ func main() {
return
case <-t.C:
drawClock(scr, time.Now(), bgStyle, clockStyle)
+ scr.Show()
}
}
}