diff options
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |