Skip to content

Commit

Permalink
Fix mouse click on meters setup function bar
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamhm committed Aug 20, 2015
1 parent 4597014 commit c7387fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MetersPanel.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c7387fa

Please sign in to comment.