diff options
author | seebye <seebye@users.noreply.github.com> | 2018-11-06 23:35:58 +0100 |
---|---|---|
committer | seebye <seebye@users.noreply.github.com> | 2018-11-06 23:35:58 +0100 |
commit | 8454fc4a67fe5dfacc721161b78bf0924a831958 (patch) | |
tree | 12f2946d8c3f9001164e175f9612b9cd9139cb6b | |
parent | 588c1856de9d91b64dde53034387770f5b7b9a22 (diff) | |
download | ranger-8454fc4a67fe5dfacc721161b78bf0924a831958.tar.gz |
ueberzug: remove margin
-rw-r--r-- | ranger/ext/img_display.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/ext/img_display.py b/ranger/ext/img_display.py index 2d5b20a0..9c84ce5e 100644 --- a/ranger/ext/img_display.py +++ b/ranger/ext/img_display.py @@ -709,8 +709,8 @@ class UeberzugImageDisplayer(ImageDisplayer): identifier=self.IMAGE_ID, x=start_x, y=start_y, - max_width=width - 1, - max_height=height - 1, + max_width=width, + max_height=height, path=path ) |