make pandoc urls appear on stopped slides, closes #103
authorMichael Göhler <github@nixhub.de>
Sat, 2 Apr 2016 22:15:58 +0000 (00:15 +0200)
committerMichael Göhler <github@nixhub.de>
Sat, 2 Apr 2016 22:15:58 +0000 (00:15 +0200)
src/viewer.c

index 89365bf..f59d584 100644 (file)
@@ -346,8 +346,9 @@ int ncurses_display(deck_t *deck, int notrans, int nofade, int invert, int reloa
         }
 
         // print pandoc URL references
-        // only if we already printed all lines of the current slide
-        if(!line) {
+        // only if we already printed all lines of the current slide (or output is stopped)
+        if(!line ||
+           stop > slide->stop) {
             int i, ymax;
             getmaxyx( content, ymax, i );
             for (i = 0; i < url_get_amount(); i++) {