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

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Tue Oct 9 09:38:10 UTC 2018


 cui/source/tabpages/tptrans.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit dc3a50d9d110892d67fef17075786a73ed535bda
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Mon Oct 8 20:25:08 2018 +0100
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Tue Oct 9 11:37:49 2018 +0200

    Resolves: tdf#120370 should check gradientgrid sensitivity
    
    rather than whether listbox first entry is not selected
    
    Change-Id: Ic3dc574f6f1a476929e89e695849756437024cee
    Reviewed-on: https://gerrit.libreoffice.org/61559
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/cui/source/tabpages/tptrans.cxx b/cui/source/tabpages/tptrans.cxx
index 02a0e64e18a4..b75bf87daa37 100644
--- a/cui/source/tabpages/tptrans.cxx
+++ b/cui/source/tabpages/tptrans.cxx
@@ -292,7 +292,7 @@ bool SvxTransparenceTabPage::FillItemSet(SfxItemSet* rAttrs)
             }
         }
     }
-    else if (m_xLbTrgrGradientType->get_active())
+    else if (m_xGridGradient->get_sensitive())
     {
         // transparence gradient, fill ItemSet from values
         if (!bGradActive


More information about the Libreoffice-commits mailing list