Fixed return char text tool bug
This commit is contained in:
parent
150b8810ec
commit
7317fbaf23
|
@ -222,7 +222,7 @@ ascii.Controller.prototype.updateButtons = function(id) {
|
||||||
* @param {Object} event
|
* @param {Object} event
|
||||||
*/
|
*/
|
||||||
ascii.Controller.prototype.handleKeyPress = function(event) {
|
ascii.Controller.prototype.handleKeyPress = function(event) {
|
||||||
if (!event.ctrlKey && !event.metaKey) {
|
if (!event.ctrlKey && !event.metaKey && event.keyCode != 13) {
|
||||||
this.drawFunction.handleKey(String.fromCharCode(event.keyCode));
|
this.drawFunction.handleKey(String.fromCharCode(event.keyCode));
|
||||||
this.view.dirty = true;
|
this.view.dirty = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue