feat(ui): improve CSimpleStatusBar

This commit is contained in:
VDm 2025-08-12 00:47:58 +04:00
parent fcc3be490c
commit ff2a0da254
9 changed files with 75 additions and 4 deletions

View file

@ -86,3 +86,14 @@ int32_t StringToFrameStrata(const char* string, FRAME_STRATA& strata) {
return 0;
}
const char* OrientationToString(uint32_t orientation) {
switch (orientation) {
case 0:
return "HORIZONTAL";
case 1:
return "VERTICAL";
default:
return "UNKNOWN";
}
}