diff options
author | Heiko Tietze <tietze.heiko@gmail.com> | 2024-01-03 15:48:13 +0100 |
---|---|---|
committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | 2024-01-05 13:38:22 +0100 |
commit | a19137e28c86b9ff118f3cfdd52554e7c326357c (patch) | |
tree | e82bc08b3f17f7355dd59dda3cd7a66b45c1bebe /sfx2 | |
parent | c806266613b5a110caa6a50327d264173d6a17d5 (diff) |
Resolves tdf#158810 - Hide recent actions while in template mode
Change-Id: I7291cc7a634a0507bb240bf417d346e7a50f3c6a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161587
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
(cherry picked from commit fc03109024041ea00bb62e90975e9a20a3668101)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161635
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/dialog/backingwindow.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/dialog/backingwindow.cxx b/sfx2/source/dialog/backingwindow.cxx index 846fa2ffb70e..9e30572d12d3 100644 --- a/sfx2/source/dialog/backingwindow.cxx +++ b/sfx2/source/dialog/backingwindow.cxx @@ -593,7 +593,7 @@ IMPL_LINK( BackingWindow, ToggleHdl, weld::Toggleable&, rButton, void ) mxAllRecentThumbnails->GrabFocus(); mxRecentButton->set_active(true); mxTemplateButton->set_active(false); - mxActions->set_sensitive(true); + mxActions->show(); } else { @@ -604,7 +604,7 @@ IMPL_LINK( BackingWindow, ToggleHdl, weld::Toggleable&, rButton, void ) mxLocalView->GrabFocus(); mxRecentButton->set_active(false); mxTemplateButton->set_active(true); - mxActions->set_sensitive(false); + mxActions->hide(); } applyFilter(); } |