[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - sc/source
Gabor Kelemen (via logerrit)
logerrit at kemper.freedesktop.org
Sat Sep 5 09:32:27 UTC 2020
sc/source/ui/miscdlgs/acredlin.cxx | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
New commits:
commit 9311abf473dd8a3067a556ba1701be8a290f5c37
Author: Gabor Kelemen <kelemen.gabor2 at nisz.hu>
AuthorDate: Mon Aug 24 22:18:55 2020 +0200
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Sep 5 11:31:55 2020 +0200
tdf#136062 Don't use 'Reject (All)/Clear formatting' buttons in Calc
Since formatting changes are not tracked in Calc
Change-Id: Ib1b50d248f1ba75aad22cd04af86d15cc2813e36
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101293
Tested-by: Jenkins
Reviewed-by: László Németh <nemeth at numbertext.org>
(cherry picked from commit 894fddc5edf5aad6fc6d0e18a6c934bfa7f001e4)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101453
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
(cherry picked from commit 120e696653a25a2560f8c60b08a6a86fda5c10fc)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101965
diff --git a/sc/source/ui/miscdlgs/acredlin.cxx b/sc/source/ui/miscdlgs/acredlin.cxx
index 4e08bc7506cf..f68080a336bd 100644
--- a/sc/source/ui/miscdlgs/acredlin.cxx
+++ b/sc/source/ui/miscdlgs/acredlin.cxx
@@ -109,10 +109,9 @@ ScAcceptChgDlg::ScAcceptChgDlg(SfxBindings* pB, SfxChildWindow* pCW, weld::Windo
pTPFilter = m_xAcceptChgCtr->GetFilterPage();
pTPView = m_xAcceptChgCtr->GetViewPage();
- // set wider window for the optional extending button labels
- // eg. "Reject/Clear formatting" instead of "Reject"
- pTPView->EnableClearFormat(true);
- pTPView->EnableClearFormatAll(true);
+ // tdf#136062 Don't use "Reject/Clear formatting" instead of "Reject" buttons in Calc
+ pTPView->EnableClearFormat(false);
+ pTPView->EnableClearFormatAll(false);
pTheView = pTPView->GetTableControl();
pTheView->SetCalcView();
More information about the Libreoffice-commits
mailing list