From 85ae85ee93c929785a4db6cf8dcd28c2a683f800 Mon Sep 17 00:00:00 2001 From: Mike Kaganski Date: Mon, 30 Mar 2020 17:44:04 +0300 Subject: tdf#101181 related: fix SdrShadowTextAttribute::operator== This fixes rendering of glow after its radius becomes 0 once. Change-Id: I7cb13989496bb113689f56ccdb53190d9b5d4ac6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/91372 Tested-by: Jenkins Reviewed-by: Mike Kaganski --- svx/source/sdr/attribute/sdrshadowtextattribute.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svx') diff --git a/svx/source/sdr/attribute/sdrshadowtextattribute.cxx b/svx/source/sdr/attribute/sdrshadowtextattribute.cxx index 705981a62c16..b8f48cd1f57e 100644 --- a/svx/source/sdr/attribute/sdrshadowtextattribute.cxx +++ b/svx/source/sdr/attribute/sdrshadowtextattribute.cxx @@ -65,7 +65,7 @@ namespace drawinglayer::attribute { return (getShadow() == rCandidate.getShadow() && getText() == rCandidate.getText() - && maGlow.isDefault()); + && getGlow() == rCandidate.getGlow()); } } // end of namespace -- cgit