Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev. | Josh Matthews | 2015-01-28 | 1 | -4/+4 | |
| | ||||||
* | Use chars().count() rather than char_len(). | Ms2ger | 2015-01-22 | 1 | -4/+4 | |
| | | | | The latter is obsolete in current Rust. | |||||
* | Move to to_owned rather than into_string. | Ms2ger | 2015-01-20 | 1 | -21/+22 | |
| | | | | into_string has been removed from Rust. | |||||
* | Fix TextInput's edit point after set_content | Peter Reid | 2015-01-17 | 1 | -9/+2 | |
| | | | | | | Previously, when the edit point was being clamped leftward by a shortened line, it would be placed one one character too far to the left instead of at the very end. | |||||
* | added unit tests for TextInput - fixes #4352 | donaldpipowitch | 2015-01-16 | 1 | -3/+165 | |
| | ||||||
* | Fixes #4573 Replaces the boolean argument of ↵ | Matt McCoy | 2015-01-08 | 1 | -11/+24 | |
| | | | | TextInput::adjust[horizontal|vertical] with enum to self document the code | |||||
* | Update rustc to revision 2cfb5acb5a2751c759627377e602bac4f88f2d19. | Ms2ger | 2015-01-08 | 1 | -0/+1 | |
| | ||||||
* | script: to_string() -> into_string() | Manish Goregaokar | 2014-12-27 | 1 | -5/+5 | |
| | ||||||
* | Allow selection of all text in a text control using the ctrl-a/cmd-a shortcut. | James Moughan | 2014-12-24 | 1 | -0/+28 | |
| | | | | Fixes #4411. | |||||
* | On left/right keydown place edit_point correctly when there is a selection ↵ | Emanuel Rylke | 2014-12-21 | 1 | -5/+15 | |
| | | | | | | in TextInput Fixes #4447 | |||||
* | Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d. | Ms2ger | 2014-12-17 | 1 | -20/+25 | |
| | ||||||
* | Fix crash in textinput | Matthew Rasmus | 2014-12-16 | 1 | -1/+7 | |
| | ||||||
* | some fixes for multiple-mode textinput | Rohan Prinja | 2014-12-11 | 1 | -23/+29 | |
| | ||||||
* | Implement selection ranges and deletion of \n for TextInput. | Emanuel Rylke | 2014-12-08 | 1 | -81/+77 | |
| | ||||||
* | Fix bug of TextInput.adjust_horizontal causing stack overflow or wraparound | Emanuel Rylke | 2014-12-06 | 1 | -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 Rylke | 2014-12-06 | 1 | -2/+10 | |
| | ||||||
* | Fix bug of TextInput.adjust_vertical(1) always moving to the end of text. | Emanuel Rylke | 2014-12-06 | 1 | -1/+1 | |
| | ||||||
* | Make TextInput correctly handle multibyte chars. | Emanuel Rylke | 2014-12-05 | 1 | -1/+1 | |
| | ||||||
* | allow deleting last char | Rohan Prinja | 2014-12-05 | 1 | -1/+1 | |
| | ||||||
* | Fix interfaces test | Keegan McAllister | 2014-11-13 | 1 | -3/+7 | |
| | ||||||
* | More documentation. | Josh Matthews | 2014-11-13 | 1 | -6/+42 | |
| | ||||||
* | Add single-line text input with no visible cursor. | Josh Matthews | 2014-11-13 | 1 | -0/+259 | |