[GB.NCURSES]

* NEW: Add Key.Esc constant to catch escape key (without needing to know
  that it's ASCII 0x1b).



git-svn-id: svn://localhost/gambas/trunk@6133 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Tobias Boege 2014-02-04 20:02:50 +00:00
parent f4c1e52c6d
commit 75f6bda782

View File

@ -39,6 +39,7 @@ GB_DESC CKeyDesc[] = {
GB_NOT_CREATABLE(),
GB_CONSTANT("Return", "i", (int) '\n'),
GB_CONSTANT("Esc", "i", (int) '\x1b'),
GB_CONSTANT("Break", "i", KEY_BREAK),
GB_CONSTANT("Home", "i", KEY_HOME),