Fix mouse click on meters setup function bar

This commit is contained in:
Hisham Muhammad 2015-08-20 01:34:52 -03:00
parent 4597014ea3
commit c7387fac15
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ struct MetersPanel_ {
static const char* MetersFunctions[] = {"Type ", "Move ", "Delete", "Done ", NULL}; static const char* MetersFunctions[] = {"Type ", "Move ", "Delete", "Done ", NULL};
static const char* MetersKeys[] = {"Space", "Enter", "Del", "Esc"}; static const char* MetersKeys[] = {"Space", "Enter", "Del", "Esc"};
static int MetersEvents[] = {' ', 13, 27, KEY_DC}; static int MetersEvents[] = {' ', 13, KEY_DC, 27};
static void MetersPanel_delete(Object* object) { static void MetersPanel_delete(Object* object) {
Panel* super = (Panel*) object; Panel* super = (Panel*) object;