[view] remove InputTextView
This commit is contained in:
@@ -18,6 +18,7 @@ class InputView extends TextView {
|
||||
|
||||
public function new() {
|
||||
super();
|
||||
textField.type = TextFieldType.INPUT;
|
||||
textField.addEventListener(Event.CHANGE, onTextChange);
|
||||
textField.addEventListener(KeyboardEvent.KEY_UP, _onKeyUp);
|
||||
textField.addEventListener(KeyboardEvent.KEY_DOWN, onKeyDown);
|
||||
@@ -27,10 +28,6 @@ class InputView extends TextView {
|
||||
textFormat.align = TextFormatAlign.LEFT;
|
||||
}
|
||||
|
||||
override private function buildTextField():TextField {
|
||||
return new InputTextField();
|
||||
}
|
||||
|
||||
private function set_hint(value:String):String {
|
||||
if (hint != value) {
|
||||
hint = value;
|
||||
|
||||
Reference in New Issue
Block a user