diff --git a/CHANGELOG b/CHANGELOG index 8fc03759..3aed40c3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,10 @@ +v1.49.1 +------- + +Fix wrong keybinding for ColumnMenu's submenu (#151) + + v1.49.0 ------- diff --git a/lib/document/ColumnMenu.js b/lib/document/ColumnMenu.js index 00d47ea4..1329fd4d 100644 --- a/lib/document/ColumnMenu.js +++ b/lib/document/ColumnMenu.js @@ -134,7 +134,7 @@ ColumnMenu.prototype.keyBindings = { // ENTER: 'submit' , // KP_ENTER: 'submit' , ALT_ENTER: 'submit' , - ESC: 'parentMenu' , + ESCAPE: 'parentMenu' , LEFT: 'parentMenu' , RIGHT: 'submenu' } ; diff --git a/package.json b/package.json index b315c6a9..df8cbdb3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "terminal-kit", - "version": "1.49.0", + "version": "1.49.1", "description": "256 colors, keys and mouse, input field, progress bars, screen buffer (including 32-bit composition and image loading), text buffer, and many more... Whether you just need colors and styles, build a simple interactive command line tool or a complexe terminal app: this is the absolute terminal lib for Node.js!", "main": "lib/termkit.js", "directories": {