sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit a9f29a8d458a79c9828a37288de421d0c3e2ea61 Author: Caolán McNamara <[email protected]> AuthorDate: Fri Sep 10 13:58:13 2021 +0100 Commit: Gabor Kelemen <[email protected]> CommitDate: Mon Sep 13 14:04:20 2021 +0200 Resolves: tdf#143777 Exclude recipient is always greyed out Change-Id: I6ce94fad6ba518457665ae6d6b473cfe6f80849f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121882 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <[email protected]> (cherry picked from commit 7e54667cbfafac1ea806245475930fd2dcc6fe36) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121989 Tested-by: Gabor Kelemen <[email protected]> Reviewed-by: Gabor Kelemen <[email protected]> diff --git a/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx b/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx index 00f9a079fbb7..827b2aef1b0c 100644 --- a/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx +++ b/sw/source/uibase/dbui/mailmergetoolbarcontrols.cxx @@ -386,7 +386,7 @@ void MMExcludeEntryController::statusChanged(const frame::FeatureStateEvent& rEv } else { - m_xExcludeCheckbox->set_sensitive(false); + m_xExcludeCheckbox->set_sensitive(true); m_xExcludeCheckbox->set_active(xConfigItem->IsRecordExcluded(xConfigItem->GetResultSetPosition())); } }
