Mon, 15 Dec 2014 23:58:01 +0200
- fixed: horizontal input scrolling was broken
sources/interface.cpp | file | annotate | diff | comparison | revisions |
--- a/sources/interface.cpp Mon Dec 15 22:36:14 2014 +0200 +++ b/sources/interface.cpp Mon Dec 15 23:58:01 2014 +0200 @@ -485,7 +485,7 @@ // Render the input string mvhline (LINES - 2, 0, ' ', COLS); - mvprintw (y, prompt.length() + 1, "%s", displayString.chars()); + mvprintw (y, prompt.length() + 1, "%s", displayString.mid (start, end).chars()); // Render the prompt attron (promptColor);