summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorArmin Le Grand (allotropia) <armin.le.grand.extern@allotropia.de>2024-03-28 16:21:24 +0100
committerArmin Le Grand <Armin.Le.Grand@me.com>2024-03-29 01:55:28 +0100
commit3027850e18eb2983e26d2535c33ff79eaa756af9 (patch)
tree0b1ac5ec6abf294ae4ed91faaa6eab4b70375421 /sd
parentca268b484c51f1ef839e6d39001ac18f17b48730 (diff)
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>
Diffstat (limited to 'sd')
-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;