From 5caabcff1204ba6159c013a8ffc2a6f6011f77fe Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 18 Jun 2020 19:54:13 +0200 Subject: [PATCH] Changed confirmation messages for the GuiMetaDataEd text edit popups. --- es-app/src/guis/GuiMetaDataEd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }