summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorwrmr2025-08-24 21:44:10 -0400
committerwrmr2025-08-24 21:44:10 -0400
commit11220c062c3d866bc76241622dad27f2b951f619 (patch)
tree7a7587e8e06774b9ac5260b34e47e6f2c7709c1b /main.c
parent82ff02b24c6fd4933e210da751575ebde0aff932 (diff)
fix lack of padding around pfp
Diffstat (limited to 'main.c')
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
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;
}