aboutsummaryrefslogtreecommitdiff
path: root/src/presentation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/presentation.c')
-rw-r--r--src/presentation.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/presentation.c b/src/presentation.c
index 4aedc71..6ae3943 100644
--- a/src/presentation.c
+++ b/src/presentation.c
@@ -125,6 +125,8 @@ struct slide *new_slide()
new->rendered_proj = NULL;
new->rendered_thumb = NULL;
+ new->notes = strdup("");
+
return new;
}
@@ -325,11 +327,13 @@ struct presentation *new_presentation()
/* FIXME: Should be just one of these */
new->prefs = calloc(1, sizeof(struct prefs));
new->prefs->b_splits = 1;
+ new->prefs->open_notes = 1;
new->window = NULL;
new->ui = NULL;
new->action_group = NULL;
new->slideshow = NULL;
+ new->notes = NULL;
new->slide_width = 1024.0;
new->slide_height = 768.0;