Added clamp to PageDown case in plot GUI and updated changelog

This commit is contained in:
Aaron McDaniel
2019-05-14 10:12:46 -05:00
parent 1147c9faf8
commit 1186753bf6
2 changed files with 3 additions and 0 deletions

View File

@@ -707,6 +707,8 @@ void Plot::keyPressEvent(QKeyEvent *event) {
case Qt::Key_PageDown:
GraphStart += PageWidth;
if (GraphStart > startMax)
GraphStart = startMax;
break;
default: