Skip to content

Commit d681877

Browse files
authored
Merge pull request #1730 from fasterit/fix-mouse-clicks-after-PR1729
Make the Panel items actually match what receives a mouse click
2 parents 1f25c93 + 8734b01 commit d681877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DisplayOptionsPanel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ static const char* const DisplayOptionsFunctions[] = {" ", " ",
2626

2727
static const char* const DisplayOptionsDecIncFunctions[] = {" ", " ", " ", " ", " ", " ", "Dec ", "Inc ", " ", "Done ", NULL};
2828
static const char* const DisplayOptionsDecIncKeys[] = {" " , " " , " " , " " , " " , " " , "F7" , "F8" , " " , "F10" , NULL};
29-
static const int DisplayOptionsDecIncEvents[] = {'-', KEY_F(7), '+', KEY_F(8), ERR, KEY_F(10), ERR, ERR, ERR, ERR};
29+
static const int DisplayOptionsDecIncEvents[] = {ERR, ERR, ERR, ERR, ERR, ERR, KEY_F(7), KEY_F(8), ERR, KEY_F(10)};
3030

3131
static void DisplayOptionsPanel_delete(Object* object) {
3232
DisplayOptionsPanel* this = (DisplayOptionsPanel*) object;

0 commit comments

Comments
 (0)