diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-01-11 17:09:10 +0000 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2020-01-12 05:33:49 +0100 |
commit | 2abea1b94e0f99b3887e816db006c11bfd72d010 (patch) | |
tree | 9b0cc8d10a14be0c90ff258a56bf0c265d2b98a1 /include/svx | |
parent | 52ac526a61c1a26bb9dbf995f4af02c9469b8cf6 (diff) |
Resolves: tdf#129763 resize to request happening on every activate
even though the state remains the same, so only do the resize
if the EnableClearFormatButton[All] state changes.
also change the default to off, which is what writer typically
set it to, and make calc the one that enables it explicitly. Its
easier to grow a dialog than shrink a dialog.
Change-Id: I449df7b7dcf0204b5143b8ad88e528668b84d0a3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86614
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/ctredlin.hxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/svx/ctredlin.hxx b/include/svx/ctredlin.hxx index 91c95fa52454..55462c9dce28 100644 --- a/include/svx/ctredlin.hxx +++ b/include/svx/ctredlin.hxx @@ -262,6 +262,9 @@ private: bool bEnableRejectAll; bool bEnableUndo; + bool bEnableClearFormat; + bool bEnableClearFormatAll; + weld::Window* m_pDialog; std::unique_ptr<weld::Button> m_xAccept; std::unique_ptr<weld::Button> m_xReject; @@ -272,6 +275,7 @@ private: DECL_LINK( PbClickHdl, weld::Button&, void ); + void EnableClearFormatButton(weld::Button&, bool bFlag); public: SvxTPView(weld::Container* pParent, weld::Window* pDialog, weld::Builder* pTopLevel); virtual ~SvxTPView() override; @@ -282,7 +286,6 @@ public: void EnableAcceptAll(bool bFlag); void EnableReject(bool bFlag); void EnableRejectAll(bool bFlag); - void EnableClearFormatButton(weld::Button&, bool bFlag); void EnableClearFormat(bool bFlag); void EnableClearFormatAll(bool bFlag); void EnableUndo(bool bFlag=true); |