Review comments

This commit is contained in:
jpirnay
2026-04-14 19:05:42 +02:00
parent f9f856f961
commit f2207cbb11
4 changed files with 14 additions and 5 deletions
+2 -1
View File
@@ -866,7 +866,8 @@ void BaseTheme::drawStatusBar(GfxRenderer& renderer, const float bookProgress, c
// No progress text, place star at right edge
starX = renderer.getScreenWidth() - metrics.statusBarHorizontalMargin - orientedMarginRight - starWidth;
}
renderer.drawText(SMALL_FONT_ID, starX, textY + textYOffset, "*");
const int starY = title.empty() ? textY : (textY + textYOffset);
renderer.drawText(SMALL_FONT_ID, starX, starY, "*");
}
}