sc/source/core/data/table2.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit e134da4a5ab5694faf9871a0e768412e28435a61
Author: Caolán McNamara <[email protected]>
AuthorDate: Tue Dec 16 21:43:32 2025 +0000
Commit: Caolán McNamara <[email protected]>
CommitDate: Thu Dec 18 14:29:59 2025 +0100
tdf#170034: cells don't get drawn on particular autofilter combination
- hidden area has to include max doc row.
- on fallback return with no visible block for target row, basically return
end of previous visible block.
Change-Id: Ie91cde71448f02e865484335ede96cf29700955a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195755
Tested-by: Jenkins CollaboraOffice <[email protected]>
Reviewed-by: Noel Grandin <[email protected]>
Reviewed-by: Caolán McNamara <[email protected]>
diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx
index 0efb2c006cbf..57550e926c4e 100644
--- a/sc/source/core/data/table2.cxx
+++ b/sc/source/core/data/table2.cxx
@@ -4488,6 +4488,7 @@ SCROW ScTable::GetRowForHeightPixels(SCROW nStartRow,
tools::Long& rStartRowHeig
nSumPx += nCommonPixels;
nRow = nLastCommon;
}
+ rStartRowHeightPx = nSumPx;
return -1;
}