summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--InfoScreen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/InfoScreen.c b/InfoScreen.c
index a6f56a9c..0b919932 100644
--- a/InfoScreen.c
+++ b/InfoScreen.c
@@ -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);
+ }
}
}