sc/source/ui/cctrl/checklistmenu.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d635e73308dc6fcea9897855b5167be09f52f840
Author:     Noel Grandin <noel.gran...@collabora.co.uk>
AuthorDate: Sat Aug 12 17:38:54 2023 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Sat Aug 12 22:00:27 2023 +0200

    tdf#156686 AutoFilter arrows have white background in kf5/gen
    
    regression from
        commit 81994cb2b8b32453a92bcb011830fcb884f22ff3
        Author: Noel Grandin
        Date:   Fri Apr 16 20:33:10 2021 +0200
        Convert internal vcl bitmap formats transparency->alpha (II)
    
    Change-Id: Ia2248b27cbe20296fc6f96a4afc0c38e29f8750f
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155641
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/sc/source/ui/cctrl/checklistmenu.cxx 
b/sc/source/ui/cctrl/checklistmenu.cxx
index 2ff0e4a4dc00..92e7096fc25a 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ b/sc/source/ui/cctrl/checklistmenu.cxx
@@ -180,7 +180,7 @@ void ScCheckListMenuControl::CreateDropDown()
         aSpinColor = rStyleSettings.GetDarkShadowColor();
 
     int nWidth = (mxMenu->get_text_height() * 3) / 4;
-    mxDropDown->SetOutputSizePixel(Size(nWidth, nWidth));
+    mxDropDown->SetOutputSizePixel(Size(nWidth, nWidth), /*bErase*/true, 
/*bAlphaMaskTransparent*/true);
     DecorationView aDecoView(mxDropDown.get());
     aDecoView.DrawSymbol(tools::Rectangle(Point(0, 0), Size(nWidth, nWidth)),
                          SymbolType::SPIN_RIGHT, aSpinColor,

Reply via email to