reduces rounding of icons in grid based menus (15 -> 5).

This commit is contained in:
ITotalJustice
2025-04-30 23:59:05 +01:00
parent c53692022b
commit 7cf36cd25f
3 changed files with 4 additions and 4 deletions

View File

@@ -605,7 +605,7 @@ void Menu::Draw(NVGcontext* vg, Theme* theme) {
}
}
gfx::drawImage(vg, x + xoff, y, 320, 180, image.image ? image.image : App::GetDefaultImage(), 15);
gfx::drawImage(vg, x + xoff, y, 320, 180, image.image ? image.image : App::GetDefaultImage(), 5);
}
const auto text_x = x + xoff;