diff --git a/src/gui/PageLoader.qml b/src/gui/PageLoader.qml index 60306cf5..5960a3fc 100644 --- a/src/gui/PageLoader.qml +++ b/src/gui/PageLoader.qml @@ -76,7 +76,7 @@ HLoader { } function moveThroughHistory(relativeMovement=1) { - if (history.length === 0) return false + if (history.length < 2) return false // Going beyond oldest entry in history if (historyPosition + relativeMovement >= history.length) {