diff --git a/es-app/src/guis/GuiMetaDataEd.cpp b/es-app/src/guis/GuiMetaDataEd.cpp index dad0bcbc3..1d0b8a9f3 100644 --- a/es-app/src/guis/GuiMetaDataEd.cpp +++ b/es-app/src/guis/GuiMetaDataEd.cpp @@ -163,7 +163,7 @@ GuiMetaDataEd::GuiMetaDataEd( defaultLaunchString, ed, updateVal, multiLine] { mWindow->pushGui(new GuiComplexTextEditPopup(mWindow, getHelpStyle(), title, staticTextString, defaultLaunchString, ed->getValue(), - updateVal, multiLine, "APPLY")); + updateVal, multiLine, "APPLY", "APPLY CHANGES?")); }); break; } @@ -190,7 +190,7 @@ GuiMetaDataEd::GuiMetaDataEd( auto updateVal = [ed](const std::string& newVal) { ed->setValue(newVal); }; row.makeAcceptInputHandler([this, title, ed, updateVal, multiLine] { mWindow->pushGui(new GuiTextEditPopup(mWindow, getHelpStyle(), title, - ed->getValue(), updateVal, multiLine, "APPLY")); + ed->getValue(), updateVal, multiLine, "APPLY", "APPLY CHANGES?")); }); break; }