From 4d19e611f8189fbc44f8b920e4ed468eb2eb779c Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Sun, 12 Jun 2022 21:23:58 +0800 Subject: [PATCH] Spreadsheet: fix binding of merged cells --- src/Mod/Spreadsheet/App/PropertySheet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Spreadsheet/App/PropertySheet.cpp b/src/Mod/Spreadsheet/App/PropertySheet.cpp index 2cd28c94ca..63c88accd3 100644 --- a/src/Mod/Spreadsheet/App/PropertySheet.cpp +++ b/src/Mod/Spreadsheet/App/PropertySheet.cpp @@ -1909,7 +1909,7 @@ void PropertySheet::setPathValue(const ObjectIdentifier &path, const boost::any Cell *dst = other->getValue(target); Cell *src = getValue(source); - if(!dst) + if(!dst || !dst->getExpression()) continue; touched.insert(source);