diff options
author | hut <hut@lavabit.com> | 2009-12-29 02:42:36 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-12-29 02:42:36 +0100 |
commit | 9d1ccd92d7f1e24777b24e54be09a8e6423a4206 (patch) | |
tree | 0c34a4ab97063329da7feaa6796f96517ec269a3 | |
parent | 11ae51f0d6206e0fed2ed3241438164a33040ea4 (diff) | |
download | ranger-9d1ccd92d7f1e24777b24e54be09a8e6423a4206.tar.gz |
disregard the last commit. this is the quick fix
-rw-r--r-- | ranger/gui/displayable.py | 1 | ||||
-rw-r--r-- | ranger/gui/widgets/filelist.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/ranger/gui/displayable.py b/ranger/gui/displayable.py index 30975064..40731449 100644 --- a/ranger/gui/displayable.py +++ b/ranger/gui/displayable.py @@ -154,7 +154,6 @@ class Displayable(EnvironmentAware, FileManagerAware, SettingsAware): raise OutOfBoundsException("Resizing Failed!") self.win.mvderwin(y, x) - self.yy, self.xx = self.win.getbegyx() self.absy, self.absx = y, x self.x = 0 self.y = 0 diff --git a/ranger/gui/widgets/filelist.py b/ranger/gui/widgets/filelist.py index 43f3834a..b2adc7e2 100644 --- a/ranger/gui/widgets/filelist.py +++ b/ranger/gui/widgets/filelist.py @@ -33,7 +33,7 @@ class FileList(Widget, DisplayableContainer): pass elif self.target.type is T_DIRECTORY: - index = self.scroll_begin + event.y - self.yy + index = self.scroll_begin + event.y - 1 if event.pressed(1): if not self.main_display: |