desktop/source/lib/init.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 40e0b90266573c3531a610ead44da6063ee12edb Author: Szymon Kłos <[email protected]> AuthorDate: Fri Feb 28 14:39:35 2020 +0100 Commit: Szymon Kłos <[email protected]> CommitDate: Thu May 14 12:18:32 2020 +0200 jsdialog: react on edit text change Change-Id: Icc9f2c823824be2a7e6662fe4a6d7db78279b515 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94147 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Szymon Kłos <[email protected]> diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 203ece44ef51..5d5e41ee09b5 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -3637,7 +3637,7 @@ static void doc_sendDialogEvent(LibreOfficeKitDocument* /*pThis*/, unsigned nWin { pUIWindow->execute(sDownAction, aMap); } - else if (aMap["cmd"] == "set") + else if (aMap["cmd"] == "set" || aMap["cmd"] == "change") { aMap["TEXT"] = aMap["data"]; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
