[Libreoffice-commits] core.git: svx/source

Mike Kaganski (via logerrit) logerrit at kemper.freedesktop.org
Mon Mar 30 15:46:27 UTC 2020


 svx/source/sdr/attribute/sdrshadowtextattribute.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 85ae85ee93c929785a4db6cf8dcd28c2a683f800
Author:     Mike Kaganski <mike.kaganski at collabora.com>
AuthorDate: Mon Mar 30 17:44:04 2020 +0300
Commit:     Mike Kaganski <mike.kaganski at collabora.com>
CommitDate: Mon Mar 30 17:45:50 2020 +0200

    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 <mike.kaganski at collabora.com>

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


More information about the Libreoffice-commits mailing list