aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-06-01 18:35:11 +0200
committerThomas White <taw@physics.org>2011-06-01 18:35:11 +0200
commit247a81c6e1b78d91fc6126d03f4018eabba43119 (patch)
tree129430d6188ffa483015e2c387ef8b382f9b8667 /src/mainwindow.c
parentddd4bba22a4cd4ebd326694961190129d129d2fd (diff)
Update slideshow display when switching slides in the window
Diffstat (limited to 'src/mainwindow.c')
-rw-r--r--src/mainwindow.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c
index d407888..1997951 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -137,6 +137,10 @@ void notify_slide_changed(struct presentation *p)
p->editing_object = NULL;
update_toolbar(p);
gdk_window_invalidate_rect(p->drawingarea->window, NULL, FALSE);
+
+ if ( p->slideshow != NULL ) {
+ notify_slideshow_slide_changed(p);
+ }
}