summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/timetable_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timetable_gui.cpp b/src/timetable_gui.cpp
index 8d428cc2d..e227b2e6c 100644
--- a/src/timetable_gui.cpp
+++ b/src/timetable_gui.cpp
@@ -73,7 +73,7 @@ struct TimetableWindow : Window {
sel += this->vscroll.pos;
- return (sel <= v->num_orders * 2 && sel >= 0) ? sel : INVALID_ORDER;
+ return (sel < v->num_orders * 2 && sel >= 0) ? sel : INVALID_ORDER;
}
void OnPaint()