From 14aec23206e5d1e2befdc662b4c67ad1f66360a9 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Tue, 5 Jul 2016 23:22:44 +0100 Subject: Rename a private method with an underscore. --- poezio/windows/inputs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/poezio/windows/inputs.py b/poezio/windows/inputs.py index 53925f3b..18d005d7 100644 --- a/poezio/windows/inputs.py +++ b/poezio/windows/inputs.py @@ -456,7 +456,7 @@ class Input(Win): """ return self.text - def addstr_colored_lite(self, text, y=None, x=None): + def _addstr_colored_lite(self, text, y=None, x=None): """ Just like addstr_colored, with the single-char attributes (\x0E to \x19 instead of \x19 + attr). We do not use any } @@ -490,7 +490,7 @@ class Input(Win): """ Refresh the line onscreen, but first, always adjust the view_pos. Also, each FORMAT_CHAR+attr_char count only take - one screen column (this is done in addstr_colored_lite), we + one screen column (this is done in _addstr_colored_lite), we have to do some special calculations to find the correct length of text to display, and the position of the cursor. """ @@ -501,7 +501,7 @@ class Input(Win): self._win.attron(to_curses_attr(self.color)) displayed_text = text[self.view_pos:self.view_pos+self.width-1].replace('\t', '\x18') self._win.attrset(0) - self.addstr_colored_lite(displayed_text) + self._addstr_colored_lite(displayed_text) # Fill the rest of the line with the input color if self.color: (_, x) = self._win.getyx() -- cgit v1.2.3