diff options
author | wrmr | 2025-08-24 21:44:10 -0400 |
---|---|---|
committer | wrmr | 2025-08-24 21:44:10 -0400 |
commit | 11220c062c3d866bc76241622dad27f2b951f619 (patch) | |
tree | 7a7587e8e06774b9ac5260b34e47e6f2c7709c1b | |
parent | 82ff02b24c6fd4933e210da751575ebde0aff932 (diff) |
fix lack of padding around pfp
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |