aboutsummaryrefslogtreecommitdiff
path: root/src/objects.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2011-10-17 22:13:51 +0100
committerThomas White <taw@bitwiz.org.uk>2011-10-17 22:13:51 +0100
commita11196f4e47c312ff787d3990e0aa8edefa3e395 (patch)
treeb43a99972750dc62aae39380e3bbdc2e9b856984 /src/objects.c
parentc124f153354b6f63aa5f40dbe8e99b6b23cb416b (diff)
New slide redraw logic
This way is much more straightforward, and allows rendering in many different sizes
Diffstat (limited to 'src/objects.c')
-rw-r--r--src/objects.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/objects.c b/src/objects.c
index be92262..d7ad8a3 100644
--- a/src/objects.c
+++ b/src/objects.c
@@ -152,8 +152,7 @@ void notify_style_update(struct presentation *p, struct style *sty)
if ( s->objects[j]->style != sty ) continue;
s->objects[j]->update_object(s->objects[j]);
- s->object_seq++;
- if ( p->view_slide == s ) changed = 1;
+ if ( p->cur_edit_slide == s ) changed = 1;
break;
}