diff options
Diffstat (limited to 'apps/plugins/viewer.c')
| -rw-r--r-- | apps/plugins/viewer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c index cefc83b..73b145d 100644 --- a/apps/plugins/viewer.c +++ b/apps/plugins/viewer.c @@ -2373,7 +2373,7 @@ static int col_limit(int col) if (col < 0) col = 0; else - if (col >= max_width) + if (col >= max_width - draw_columns) col = max_width - draw_columns; return col; |