Update comments

master
stweedo 2024-09-03 00:27:51 -05:00 committed by GitHub
parent 3de80a7217
commit 53b72754ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 3 deletions

View File

@ -226,10 +226,11 @@
date = new Date();
g.clear();
// Always draw background for full screen
if (bgImage) {
// Always draw backgrounds full screen
if (bgImage) { // Check for bg in boxclk config
g.drawImage(bgImage, 0, 0);
} else {
} else { // Otherwise use clockbg module
background.fillRect(0, 0, g.getWidth(), g.getHeight());
}