Rewrite comment for clarity

pull/8022/head
Daniel Wennberg 2025-07-22 09:30:43 -07:00
parent 53b029284d
commit 54b56af570
1 changed files with 3 additions and 4 deletions

View File

@ -235,10 +235,9 @@ pub fn apply(self: *Metrics, mods: ModifierSet) void {
// centered in the cell.
if (comptime tag == .cell_height) {
// We split the difference in half because we want to
// center the baseline in the cell. We round the shift
// down to the nearest full pixel shift, such that if
// the diff is odd, there's one more pixel added/removed
// on top than on the bottom.
// center the baseline in the cell. If the difference
// is odd, one more pixel is added/removed on top than
// on the bottom.
if (new > original) {
const diff = new - original;
const diff_bottom = diff / 2;