diff options
Diffstat (limited to 'src/window.py')
-rw-r--r-- | src/window.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.py b/src/window.py index 22709436..c62dd869 100644 --- a/src/window.py +++ b/src/window.py @@ -332,7 +332,7 @@ class Input(Win): if not len(self.history): return self.reset_completion() - self.win.clear() + self.win.erase() if self.histo_pos >= 0: self.histo_pos -= 1 self.text = self.history[self.histo_pos+1] @@ -347,7 +347,7 @@ class Input(Win): if not len(self.history): return self.reset_completion() - self.win.clear() + self.win.erase() if self.histo_pos < len(self.history)-1: self.histo_pos += 1 self.text = self.history[self.histo_pos] |