From 09bbb925f995caa091d237e7c6d2638742cba563 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sun, 12 Jul 2020 21:05:50 +0200 Subject: [PATCH] Added missing help text to GuiMsgBox. --- es-core/src/guis/GuiMsgBox.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/es-core/src/guis/GuiMsgBox.cpp b/es-core/src/guis/GuiMsgBox.cpp index 4e1a6bd9a..104f8965b 100644 --- a/es-core/src/guis/GuiMsgBox.cpp +++ b/es-core/src/guis/GuiMsgBox.cpp @@ -118,5 +118,7 @@ void GuiMsgBox::deleteMeAndCall(const std::function& func) std::vector GuiMsgBox::getHelpPrompts() { - return mGrid.getHelpPrompts(); + std::vector prompts = mGrid.getHelpPrompts(); + prompts.push_back(HelpPrompt("b", "Back")); + return prompts; }