diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-05-20 15:19:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-05-20 18:27:52 +0200 |
commit | 115ab48f86d4e3c6eede49767df1ee5a82b4ab22 (patch) | |
tree | 41643d8c547055c4e76d1ab70176719605db521d /cui | |
parent | 12d6231045899534ce8ba5f7c273a1ae88f3804b (diff) |
Related: tdf#124467 make the wrap handler act as it did before
Change-Id: I075b0fa8a28c0683542ef589144c041f41a74166
Reviewed-on: https://gerrit.libreoffice.org/72604
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/tabpages/align.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/align.cxx b/cui/source/tabpages/align.cxx index 900a91f7acd8..42a271028cf9 100644 --- a/cui/source/tabpages/align.cxx +++ b/cui/source/tabpages/align.cxx @@ -698,6 +698,7 @@ IMPL_LINK(AlignmentTabPage, AsianModeClickHdl, weld::ToggleButton&, rToggle, voi IMPL_LINK(AlignmentTabPage, WrapClickHdl, weld::ToggleButton&, rToggle, void) { m_aWrapState.ButtonToggled(rToggle); + UpdateEnableControls(); } IMPL_LINK(AlignmentTabPage, HyphenClickHdl, weld::ToggleButton&, rToggle, void) @@ -708,7 +709,6 @@ IMPL_LINK(AlignmentTabPage, HyphenClickHdl, weld::ToggleButton&, rToggle, void) IMPL_LINK(AlignmentTabPage, ShrinkClickHdl, weld::ToggleButton&, rToggle, void) { m_aShrinkState.ButtonToggled(rToggle); - UpdateEnableControls(); } IMPL_LINK_NOARG(AlignmentTabPage, UpdateEnableHdl, weld::ComboBox&, void) |