sc/source/core/data/validat.cxx |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 65ca233db9a39fd251ffac46608bb2714949e894
Author:     Pranam Lashkari <[email protected]>
AuthorDate: Wed Oct 29 14:48:58 2025 +0530
Commit:     Pranam Lashkari <[email protected]>
CommitDate: Mon Nov 3 15:38:03 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

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
 

Reply via email to