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; }