summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArmin Le Grand (allotropia) <armin.le.grand.extern@allotropia.de>2024-03-28 16:21:24 +0100
committerThorsten Behrens <thorsten.behrens@allotropia.de>2024-04-30 15:10:41 +0200
commitf7a2447f2a4b4726bdbf540b6100b3e373705ba5 (patch)
tree9e948f15bd1b1c0c50e27923b3b29e17694d37c2
parentIASS: Fix crash with PresenterConsole (diff)
downloadcore-f7a2447f2a4b4726bdbf540b6100b3e373705ba5.tar.gz
core-f7a2447f2a4b4726bdbf540b6100b3e373705ba5.zip
IASS: SlidePane/Sorter updates were missing
Change-Id: I75ce5311a74f15397dd5a1762e17ddff3203fc7f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165468 Tested-by: Jenkins Reviewed-by: Armin Le Grand <Armin.Le.Grand@me.com>
-rw-r--r--sd/source/ui/tools/IdleDetection.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/tools/IdleDetection.cxx b/sd/source/ui/tools/IdleDetection.cxx
index 988bd849bf0e..ef4cc0521c52 100644
--- a/sd/source/ui/tools/IdleDetection.cxx
+++ b/sd/source/ui/tools/IdleDetection.cxx
@@ -77,7 +77,7 @@ IdleState IdleDetection::CheckSlideShowRunning()
if (pBase != nullptr)
{
rtl::Reference< SlideShow > xSlideShow( SlideShow::GetSlideShow( *pBase ) );
- if( xSlideShow.is() && xSlideShow->isRunning() )
+ if( xSlideShow.is() && xSlideShow->isRunning() && !xSlideShow->IsInteractiveSlideshow()) // IASS
{
if (xSlideShow->isFullScreen())
eResult |= IdleState::FullScreenShowActive;