* A lot more work on cursor movement/etc. for MultiLineEditTextView2

* Start mostly placeholder stuff for regular key press / insertion of text
This commit is contained in:
Bryan Ashby
2015-06-03 22:00:33 -06:00
parent 9be258dab5
commit e401e4a1a0
3 changed files with 88 additions and 16 deletions

View File

@@ -181,6 +181,7 @@ View.prototype.setFocus = function(focused) {
View.prototype.onKeyPress = function(key, isSpecial) {
assert(this.hasFocus, 'View does not have focus');
assert(this.acceptsInput, 'View does not accept input');
assert(1 === key.length);
};
View.prototype.onSpecialKeyPress = function(keyName) {