From c816137f8b392aa12a3e696ae65aa57e8a29052d Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 11 Sep 2020 11:19:19 +0200 Subject: [PATCH] tour:: slide_restore_all() on pmStop --- tour.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tour.cpp b/tour.cpp index 7e7f029b..88c1c51f 100644 --- a/tour.cpp +++ b/tour.cpp @@ -134,6 +134,7 @@ EX void presentation(presmode mode) { slides[currentslide].action(mode); callhooks(hooks_slide, mode); + if(mode == pmStop) slide_restore_all(); } string parent_folder(const string& s) { @@ -194,6 +195,7 @@ bool handleKeyTour(int sym, int uni) { } if(flags & FINALSLIDE) return true; presentation(pmStop); + slide_restore_all(); currentslide++; presentation(pmStart); slidehelp();