|
@@ -195,6 +195,9 @@ module BABYLON.GUI {
|
|
|
public processKey(keyCode: number, key?: string) {
|
|
|
// Specific cases
|
|
|
switch (keyCode) {
|
|
|
+ case 32: //SPACE
|
|
|
+ key = " "; //ie11 key for space is "Spacebar"
|
|
|
+ break;
|
|
|
case 8: // BACKSPACE
|
|
|
if (this._text && this._text.length > 0) {
|
|
|
if (this._cursorOffset === 0) {
|