Fix indentation

This commit is contained in:
Kovid Goyal 2020-08-06 17:55:02 +05:30
parent a835b56a51
commit df475dfde5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -131,7 +131,7 @@ calc_cell_height(Face *self, bool for_metrics) {
if (char_height > ans) { if (char_height > ans) {
if (global_state.debug_font_fallback) printf( if (global_state.debug_font_fallback) printf(
"Increasing cell height by %u pixels to work around buggy font that renders '%c' outside the bounding box\n", char_height - ans, chars[i]); "Increasing cell height by %u pixels to work around buggy font that renders '%c' outside the bounding box\n", char_height - ans, chars[i]);
ans = char_height; ans = char_height;
} }
} }
} }