Closed GoogleCodeExporter closed 8 years ago
Thanks for the bug report. I checked in a fix for the next release. Until then
you should be able to get rid of the trailing extra space by applying this
change to autoload/conque_term/conque_screen.py
Index: autoload/conque_term/conque_screen.py
===================================================================
--- autoload/conque_term/conque_screen.py (revision 448)
+++ autoload/conque_term/conque_screen.py (working copy)
@@ -82,7 +82,7 @@
# if line is past buffer end, add lines to buffer
if real_line >= len(self.buffer):
for i in range(len(self.buffer), real_line + 1):
- self.append(' ' * self.screen_width)
+ self.append(' ')
return u(self.buffer[real_line], 'utf-8')
# }}}
Original comment by nicora...@gmail.com
on 8 Mar 2011 at 1:10
Original issue reported on code.google.com by
rhys.ule...@gmail.com
on 6 Mar 2011 at 6:30