sc/source/core/data/validat.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
New commits: commit f60a4baee3852184da95c2947c910b485225d5fb Author: Pranam Lashkari <[email protected]> AuthorDate: Wed Oct 29 14:48:58 2025 +0530 Commit: Xisco Fauli <[email protected]> CommitDate: Mon Nov 3 16:40:13 2025 +0100 tdf#168261: resume ScInputHandler even if error not displayed problem: regression from 72bbb0dd4a368dab2b1bd99917cd07d23a92a3f0 when data validity dialog was not displayed, error function returned early this caused issue with cell invalid data cleaning and it was not possible to enter new data in any new cell to reproduce: select data validity as list and also disable error message showing enter the invalid data in the validity cell subsequently its not possible to type in any cells Change-Id: Ia2157ae57ca90dd9365daae7881640a00c3f1216 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193141 Reviewed-by: Pranam Lashkari <[email protected]> Tested-by: Jenkins (cherry picked from commit 65ca233db9a39fd251ffac46608bb2714949e894) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193356 Reviewed-by: Xisco Fauli <[email protected]> diff --git a/sc/source/core/data/validat.cxx b/sc/source/core/data/validat.cxx index 8b00dc3c98ea..7850c0e52304 100644 --- a/sc/source/core/data/validat.cxx +++ b/sc/source/core/data/validat.cxx @@ -382,8 +382,10 @@ void ScValidationData::DoError(weld::Window* pParent, const OUString& rInput, co return; } - if (!bShowError) + if (!bShowError) { + callback(true); return; + } // Output error message
