pinosaur
/
smdp.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
658855b
)
make pandoc urls appear on stopped slides, closes #103
author
Michael Göhler
<github@nixhub.de>
Sat, 2 Apr 2016 22:15:58 +0000
(
00:15
+0200)
committer
Michael Göhler
<github@nixhub.de>
Sat, 2 Apr 2016 22:15:58 +0000
(
00:15
+0200)
src/viewer.c
patch
|
blob
|
history
diff --git
a/src/viewer.c
b/src/viewer.c
index
89365bf
..
f59d584
100644
(file)
--- a/
src/viewer.c
+++ b/
src/viewer.c
@@
-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++) {