This commit is contained in:
e2002
2025-09-12 11:09:45 +03:00
parent 8626b5668e
commit 132cb3f576
3 changed files with 5 additions and 2 deletions

View File

@@ -235,6 +235,9 @@ Work is in progress...
--- ---
## Version history ## Version history
#### v0.9.711
- fixed compilation error for LCD displays #210
#### v0.9.710 #### v0.9.710
- rewritten ILI9225 display driver: now it supports framebuffer like the others and is more stable 👍🏻 - rewritten ILI9225 display driver: now it supports framebuffer like the others and is more stable 👍🏻
- fixed clock update bug when changing timezone in settings - fixed clock update bug when changing timezone in settings

View File

@@ -2,7 +2,7 @@
#define options_h #define options_h
#pragma once #pragma once
#define YOVERSION "0.9.710" #define YOVERSION "0.9.711"
/******************************************************* /*******************************************************
DO NOT EDIT THIS FILE. DO NOT EDIT THIS FILE.

View File

@@ -800,7 +800,7 @@ void ClockWidget::_printClock(bool force){
void ClockWidget::_clearClock(){} void ClockWidget::_clearClock(){}
void ClockWidget::draw(){ void ClockWidget::draw(bool force){
if(!_active) return; if(!_active) return;
_printClock(true); _printClock(true);
} }