diff options
author | hut <hut@lavabit.com> | 2010-03-19 19:44:06 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-03-19 19:44:06 +0100 |
commit | 0072c11662c916dfe8a34de7c9a680d939ac0b79 (patch) | |
tree | 23370ea181c3a3be41462a8d6ba7d87ee9ebee9c | |
parent | 3a9e3382f920f40a3d92bd7b8c304f87558eb04c (diff) | |
download | ranger-0072c11662c916dfe8a34de7c9a680d939ac0b79.tar.gz |
gui.widgets.pager: increase the width of the pager by 1
-rw-r--r-- | ranger/gui/widgets/pager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/widgets/pager.py b/ranger/gui/widgets/pager.py index b3e826e0..e376a2a6 100644 --- a/ranger/gui/widgets/pager.py +++ b/ranger/gui/widgets/pager.py @@ -234,7 +234,7 @@ class Pager(Widget): while True: try: line = self._get_line(i).expandtabs(4) - line = line[startx:self.wid - 1 + startx].rstrip() + line = line[startx:self.wid + startx].rstrip() yield line except IndexError: raise StopIteration |