sc/source/core/data/validat.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit ae2fe466dfa4f453f879c80a059b9bee79bc84f6
Author:     Pranam Lashkari <[email protected]>
AuthorDate: Thu Oct 30 15:20:21 2025 +0530
Commit:     Andras Timar <[email protected]>
CommitDate: Thu Oct 30 16:42:53 2025 +0100

    tdf#167126: 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
    
    Change-Id: I612ea8b9c651afba1095fc14726e5398484207f5
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193187
    Reviewed-by: Andras Timar <[email protected]>
    Tested-by: Andras Timar <[email protected]>

diff --git a/sc/source/core/data/validat.cxx b/sc/source/core/data/validat.cxx
index 898d4bc986fb..1dbb452a5d22 100644
--- a/sc/source/core/data/validat.cxx
+++ b/sc/source/core/data/validat.cxx
@@ -378,6 +378,7 @@ void ScValidationData::DoError(weld::Window* pParent, const 
OUString& rInput, co
 {
     if ( eErrorStyle == SC_VALERR_MACRO ) {
         DoMacro(rPos, rInput, nullptr, pParent);
+        callback(true);
         return;
     }
 

Reply via email to