diff options
| author | Matt Zrinsky <matt.zrinsky@gmail.com> | 2025-03-23 06:01:47 -0500 |
|---|---|---|
| committer | JF <JF002@users.noreply.github.com> | 2025-05-19 21:49:46 +0200 |
| commit | fb70b538e4ce9a7b56b609a1d3baf98e2081aedd (patch) | |
| tree | 084a942fcdffbe06ec30bb7912c0c75bcbfc5d70 | |
| parent | bb8923b56e3c89a3e9b8dad70fc80f61f14deb17 (diff) | |
Fix about screen vertical centering.
There was a newline at the end of the last line on the third screen,
which was causing the label to not be centered vertically.
Removing it fixes the centering.
| -rw-r--r-- | src/displayapp/screens/SystemInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/SystemInfo.cpp b/src/displayapp/screens/SystemInfo.cpp index 01204aed..2392f3be 100644 --- a/src/displayapp/screens/SystemInfo.cpp +++ b/src/displayapp/screens/SystemInfo.cpp @@ -198,7 +198,7 @@ std::unique_ptr<Screen> SystemInfo::CreateScreen3() { " #808080 Free# %d/%d\n" " #808080 Min free# %d\n" " #808080 Alloc err# %d\n" - " #808080 Ovrfl err# %d\n", + " #808080 Ovrfl err# %d", bleAddr[5], bleAddr[4], bleAddr[3], |
