fixed height calculation

master
Sascha Nitsch 2022-03-22 03:43:49 +01:00
parent 46ee10990a
commit 9337d28e75
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ void CimditProfile::showActivate() {
w = w >> 1;
h = 8;
}
display.setCursor((SCREEN_WIDTH - w) >> 1, (SCREEN_HEIGHT >> 1) + ((SCREEN_HEIGHT - h)>> 1));
display.setCursor((SCREEN_WIDTH - w) >> 1, SCREEN_HEIGHT- h);
display.write(m_profiles[m_selectingProfile]);
display.write("?");
display.display();