sc/source/ui/view/output.cxx | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit e4e080086e76a0bedd7ce62dc610889dc5c86401
Author: Henry Castro <[email protected]>
AuthorDate: Wed Aug 9 16:48:42 2023 -0400
Commit: Henry Castro <[email protected]>
CommitDate: Thu Aug 10 21:32:27 2023 +0200
tdf#155799: sc: fix paint the reference mark
If a reference mark is initiated with the first click,
the initial range points are the same and extended
if merged cells, but if the user drag&drop more cells
the Range end has to extend if merged cells
Signed-off-by: Henry Castro <[email protected]>
Change-Id: Ife7c4514a9303226b73bff61bd0df689f81af42f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155533
Tested-by: Jenkins CollaboraOffice <[email protected]>
Reviewed-by: Tomaž Vajngerl <[email protected]>
(cherry picked from commit ebd1a4d6fc3f9ba533a29fa54acf7b3b41c398d5)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155483
Tested-by: Jenkins
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx
index ae7a33bfdf49..f3b4b3ca9be2 100644
--- a/sc/source/ui/view/output.cxx
+++ b/sc/source/ui/view/output.cxx
@@ -2011,6 +2011,8 @@ void ScOutputData::DrawRefMark( SCCOL nRefStartX, SCROW
nRefStartY,
if ( nRefStartX == nRefEndX && nRefStartY == nRefEndY )
mpDoc->ExtendMerge( nRefStartX, nRefStartY, nRefEndX, nRefEndY, nTab );
+ else if (mpDoc->HasAttrib(nRefEndX, nRefEndY, nTab, HasAttrFlags::Merged))
+ mpDoc->ExtendMerge(nRefEndX, nRefEndY, nRefEndX, nRefEndY, nTab);
if ( !(nRefStartX <= nVisX2 && nRefEndX >= nVisX1 &&
nRefStartY <= nVisY2 && nRefEndY >= nVisY1) )