sc/source/core/data/table2.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit a35ba6f10ffb4b10d1eecfc8fa2ba76856612ce6
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 17:12:55 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]>
(cherry picked from commit e134da4a5ab5694faf9871a0e768412e28435a61)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195847
Tested-by: Jenkins
diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx
index 1d2455c57deb..cf769e4ca242 100644
--- a/sc/source/core/data/table2.cxx
+++ b/sc/source/core/data/table2.cxx
@@ -4482,6 +4482,7 @@ SCROW ScTable::GetRowForHeightPixels(SCROW nStartRow,
tools::Long& rStartRowHeig
nSumPx += nCommonPixels;
nRow = nLastCommon;
}
+ rStartRowHeightPx = nSumPx;
return -1;
}