aboutsummaryrefslogtreecommitdiff
path: root/src/mainwindow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.c')
-rw-r--r--src/mainwindow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c
index a9c52f8..15d8025 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -906,10 +906,10 @@ static gboolean expose_sig(GtkWidget *da, GdkEventExpose *event,
/* Overall background */
cairo_rectangle(cr, event->area.x, event->area.y,
event->area.width, event->area.height);
- if ( p->slideshow == NULL ) {
- cairo_set_source_rgb(cr, 0.9, 0.9, 0.9);
- } else {
+ if ( (p->slideshow != NULL) && !p->slideshow_linked ) {
cairo_set_source_rgb(cr, 1.0, 0.3, 0.2);
+ } else {
+ cairo_set_source_rgb(cr, 0.9, 0.9, 0.9);
}
cairo_fill(cr);