diff options
Diffstat (limited to 'main.c')
-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; } |