Commit c7387fac authored by Hisham Muhammad's avatar Hisham Muhammad
Browse files

Fix mouse click on meters setup function bar

parent 4597014e
......@@ -32,7 +32,7 @@ struct MetersPanel_ {
static const char* MetersFunctions[] = {"Type ", "Move ", "Delete", "Done ", NULL};
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) {
Panel* super = (Panel*) object;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment