From 9e27a867dda6da5e1cd4cf47672af47e3589138c Mon Sep 17 00:00:00 2001 From: peace-maker Date: Sat, 4 Feb 2017 06:16:27 -0700 Subject: [PATCH] Fix typo in menu manager drawing no spacer (#581) The "Back" slot was hidden even if the page had a "Next" button. Draw the spacer correctly! --- core/MenuManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/MenuManager.cpp b/core/MenuManager.cpp index 498f6f3e..6554465b 100644 --- a/core/MenuManager.cpp +++ b/core/MenuManager.cpp @@ -570,7 +570,7 @@ skip_search: /* If there are no control options, * Instead just pad with invisible slots. */ - if (!displayPrev && !displayPrev) + if (!displayNext && !displayPrev) { padItem.style = ITEMDRAW_NOTEXT; }