summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorSzymon Kłos <eszkadev@gmail.com>2017-02-18 13:27:28 +0100
committerAndras Timar <andras.timar@collabora.com>2017-07-12 10:54:17 +0200
commitc028d8391e8fae4553c5223a8ac0b38d3184d61e (patch)
treead2a8905396f7bb19ffefe73d5078384355c5095 /sd
parenta5a76729768a4282669695ff511c98e28e6004ab (diff)
tdf#103355 Hide Notebookbar during slide show
Change-Id: Ie3e1b9f9dfc109ecb48cd384972dfa5a5118c3fa Reviewed-on: https://gerrit.libreoffice.org/34401 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Szymon Kłos <eszkadev@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/38898 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com> (cherry picked from commit 4e461f61ac739c6b9ff38c247095ea69b9fb4e21)
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/view/drviewse.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sd/source/ui/view/drviewse.cxx b/sd/source/ui/view/drviewse.cxx
index cff011ed0dc2..e48126db1870 100644
--- a/sd/source/ui/view/drviewse.cxx
+++ b/sd/source/ui/view/drviewse.cxx
@@ -60,6 +60,7 @@
#include <avmedia/mediawindow.hxx>
#include <svl/urihelper.hxx>
#include <sfx2/docfile.hxx>
+#include <sfx2/notebookbar/SfxNotebookBar.hxx>
#include "DrawViewShell.hxx"
#include "slideshow.hxx"
@@ -722,8 +723,12 @@ void DrawViewShell::FuSupport(SfxRequest& rReq)
case SID_PRESENTATION_CURRENT_SLIDE:
case SID_REHEARSE_TIMINGS:
{
+ sfx2::SfxNotebookBar::LockNotebookBar();
+
slideshowhelp::ShowSlideShow(rReq, *GetDoc());
rReq.Ignore ();
+
+ sfx2::SfxNotebookBar::UnlockNotebookBar();
}
break;