Added missing help text to GuiMsgBox.

This commit is contained in:
Leon Styhre 2020-07-12 21:05:50 +02:00
parent ed5815a582
commit 09bbb925f9

View file

@ -118,5 +118,7 @@ void GuiMsgBox::deleteMeAndCall(const std::function<void()>& func)
std::vector<HelpPrompt> GuiMsgBox::getHelpPrompts()
{
return mGrid.getHelpPrompts();
std::vector<HelpPrompt> prompts = mGrid.getHelpPrompts();
prompts.push_back(HelpPrompt("b", "Back"));
return prompts;
}