Use bulleye char for checkbox

This commit is contained in:
Maschell 2024-08-04 17:56:26 +02:00
parent 87ca550b61
commit 9987fec53c

View File

@ -71,7 +71,9 @@ void ConfigRenderer::drawConfigEntry(uint32_t yOffset, const GeneralConfigInform
if (mSetActivePluginsMode) {
DrawUtils::setFontSize(24);
if (isActive) {
DrawUtils::print(textXOffset, yOffset + 8 + 24, "x");
DrawUtils::print(textXOffset, yOffset + 8 + 24, "\u25C9");
} else {
DrawUtils::print(textXOffset, yOffset + 8 + 24, "\u25CE");
}
textXOffset += 32;
}