Skip to content

Commit

Permalink
adding keys forgot to do that will be squashing this comment at the e…
Browse files Browse the repository at this point in the history
…nd of everything
  • Loading branch information
rustedusted committed Oct 17, 2024
1 parent 327b87c commit 621946c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions DisplayOptionsPanel.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,14 @@ static HandlerResult DisplayOptionsPanel_eventHandler(Panel* super, int ch) {
break;
}
break;
case KEY_F(7):
case '-':
if (OptionItem_kind(selected) == OPTION_ITEM_NUMBER) {
NumberItem_decrease((NumberItem*)selected);
result = HANDLED;
}
break;
case KEY_F(8):
case '+':
if (OptionItem_kind(selected) == OPTION_ITEM_NUMBER) {
NumberItem_increase((NumberItem*)selected);
Expand Down

0 comments on commit 621946c

Please sign in to comment.