From 11220c062c3d866bc76241622dad27f2b951f619 Mon Sep 17 00:00:00 2001 From: wrmr Date: Sun, 24 Aug 2025 21:44:10 -0400 Subject: fix lack of padding around pfp --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main.c') diff --git a/main.c b/main.c index ce0f02d..94035c3 100644 --- a/main.c +++ b/main.c @@ -415,7 +415,7 @@ typedef struct { int post_left_margin(Post *post) { int lm = opt.margin.left; - if (opt.pfp_vis && post->user->pfp.cols > lm) lm = post->user->pfp.cols; + if (opt.pfp_vis && post->user->pfp.cols >= lm) lm = post->user->pfp.cols + 1; return lm; } -- cgit v1.2.3