Minor changes

pull/1333/head
David Peer 2022-01-21 22:34:36 +01:00
parent 79f92215b9
commit ea028454af
1 changed files with 2 additions and 2 deletions

View File

@ -170,8 +170,8 @@ function drawDate(){
g.setNormalFont();
g.setColor(g.theme.fg);
var dayStr = locale.dow(currentDate, true).toUpperCase();
g.drawString(dayStr, cx/2-15, cy/2);
g.drawString(currentDate.getDate(), cx/2-15, cy/2+22);
g.drawString(dayStr, cx/2-15, cy/2-5);
g.drawString(currentDate.getDate(), cx/2-15, cy/2+17);
}