Portrait Rotation

This commit is contained in:
2025-07-15 23:04:34 +02:00
parent b93597ee26
commit 66ee0040ba
7 changed files with 43 additions and 20 deletions

View File

@@ -7,7 +7,7 @@
class Status
{
public:
Status(String value) : value{value}
Status(LGFX *canvas, String value) : canvas{canvas}, value{value}
{
old_length = value.length();
}
@@ -21,7 +21,7 @@ public:
dirty = true;
}
void draw(LGFX *canvas)
void draw()
{
if (!dirty)
{