Merge branch 'hishamhm-pull-1010'

This commit is contained in:
Nathan Scott 2020-08-20 15:16:47 +10:00
commit 9aa816873f
1 changed files with 2 additions and 1 deletions

View File

@ -135,8 +135,9 @@ void InfoScreen_run(InfoScreen* this) {
if (mevent.y >= panel->y && mevent.y < LINES - 1) {
Panel_setSelected(panel, mevent.y - panel->y + panel->scrollV);
ch = 0;
} else if (mevent.y == LINES - 1)
} else if (mevent.y == LINES - 1) {
ch = IncSet_synthesizeEvent(this->inc, mevent.x);
}
}
}