sc/source/ui/cctrl/checklistmenu.cxx |    7 +++++++
 1 file changed, 7 insertions(+)

New commits:
commit a5aa5c7fad5ae07d8c4958d9f18bf0c2bd820b9a
Author:     Darshan11 <darshan.upadh...@collabora.com>
AuthorDate: Wed Nov 29 17:02:44 2023 +0530
Commit:     Szymon Kłos <szymon.k...@collabora.com>
CommitDate: Thu Dec 14 09:31:41 2023 +0100

    Disable Select/Unselect-current Filter Checkboxes in Calc
    
    Change-Id: I99a3d78bfbb65e751328452d7405d7844f810dd9
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160082
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>
    Reviewed-by: Szymon Kłos <szymon.k...@collabora.com>
    (cherry picked from commit 5788f736578dc22bc9bcd46a6e75233237b82af2)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160697
    Tested-by: Jenkins

diff --git a/sc/source/ui/cctrl/checklistmenu.cxx 
b/sc/source/ui/cctrl/checklistmenu.cxx
index 92e7096fc25a..ecee4dab0600 100644
--- a/sc/source/ui/cctrl/checklistmenu.cxx
+++ b/sc/source/ui/cctrl/checklistmenu.cxx
@@ -623,6 +623,13 @@ 
ScCheckListMenuControl::ScCheckListMenuControl(weld::Widget* pParent, ScViewData
 
     maSearchEditTimer.SetTimeout(EDIT_UPDATEDATA_TIMEOUT);
     maSearchEditTimer.SetInvokeHandler(LINK(this, ScCheckListMenuControl, 
SearchEditTimeoutHdl));
+
+    if (comphelper::LibreOfficeKit::isActive())
+    {
+        mxBtnSelectSingle->hide();
+        mxBtnUnselectSingle->hide();
+    }
+
 }
 
 void ScCheckListMenuControl::GrabFocus()

Reply via email to