From dbd8996f00cd8b30c1be988a97e72040e8b35200 Mon Sep 17 00:00:00 2001 From: wrmr Date: Mon, 25 Aug 2025 14:46:34 -0400 Subject: don't expand post height when opt.pfp_vis off --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index e953fda..69eda35 100644 --- a/main.c +++ b/main.c @@ -460,7 +460,7 @@ void gfx_predraw_post(GfxPost *post) { int gfx_post_height(GfxPost *post) { int n = 0; - if (post->src->user->pfp.lines > post->lines + 2) n = post->src->user->pfp.lines - post->lines - 2; + if (opt.pfp_vis && post->src->user->pfp.lines > post->lines + 2) n = post->src->user->pfp.lines - post->lines - 2; return post->lines + 2 + GFX_TEXT_MARGIN_Y * 2 + n; } -- cgit v1.2.3