aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/textinput.rs
Commit message (Collapse)AuthorAgeFilesLines
* Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d.Ms2ger2014-12-171-20/+25
|
* Fix crash in textinputMatthew Rasmus2014-12-161-1/+7
|
* some fixes for multiple-mode textinputRohan Prinja2014-12-111-23/+29
|
* Implement selection ranges and deletion of \n for TextInput.Emanuel Rylke2014-12-081-81/+77
|
* Fix bug of TextInput.adjust_horizontal causing stack overflow or wraparoundEmanuel Rylke2014-12-061-19/+10
| | | | | | | When the edit_point is in the first position of a multiline TextInput adjust_horizontal(-1) moves the edit_point to the end of the first line. When the first line is empty this causes a stack overflow. When the edit_point is in the last position adjust_horizontal(1) causes a stack overflow.
* Implement Page(Up|Down) functionality for TextInput.Emanuel Rylke2014-12-061-2/+10
|
* Fix bug of TextInput.adjust_vertical(1) always moving to the end of text.Emanuel Rylke2014-12-061-1/+1
|
* Make TextInput correctly handle multibyte chars.Emanuel Rylke2014-12-051-1/+1
|
* allow deleting last charRohan Prinja2014-12-051-1/+1
|
* Fix interfaces testKeegan McAllister2014-11-131-3/+7
|
* More documentation.Josh Matthews2014-11-131-6/+42
|
* Add single-line text input with no visible cursor.Josh Matthews2014-11-131-0/+259