What steps will reproduce the problem? 1. This requires the previous fix to TextArea so it doesn't raise IndexError. 2. t = gui.Table() t.tr() t.td(gui.TextArea(value='')) 3. Focus the text area and type characters to see the bug.
What is the expected output? What do you see instead? Characters should append to line. Instead they insert at eol - 1.
What version of the product are you using? On what operating system? pgu 0.14, pygame 1.9.1, Python 2.6.6, Windows 7.
Please provide any additional information below. To fix this change the following line in TextArea.setCursorByHVPos():
if ( self.hpos >= len(line) ):
if ( self.hpos > len(line) ):
Comment #1
Posted on Mar 6, 2011 by Swift CamelClosing this ticket since you've included this change in a recent patch. Thanks!
Status: Fixed
Labels:
Type-Defect
Priority-Medium