aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/narrative.c
diff options
context:
space:
mode:
Diffstat (limited to 'libstorycode/narrative.c')
-rw-r--r--libstorycode/narrative.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libstorycode/narrative.c b/libstorycode/narrative.c
index d8af742..9488285 100644
--- a/libstorycode/narrative.c
+++ b/libstorycode/narrative.c
@@ -225,7 +225,7 @@ void narrative_add_prestitle(Narrative *n, char *text)
item->type = NARRATIVE_ITEM_PRESTITLE;
item->text = text;
- item->align = ALIGN_LEFT;
+ item->align = ALIGN_INHERIT;
item->layout = NULL;
}
@@ -239,7 +239,7 @@ void narrative_add_bp(Narrative *n, char *text)
item->type = NARRATIVE_ITEM_BP;
item->text = text;
- item->align = ALIGN_LEFT;
+ item->align = ALIGN_INHERIT;
item->layout = NULL;
}
@@ -253,7 +253,7 @@ void narrative_add_text(Narrative *n, char *text)
item->type = NARRATIVE_ITEM_TEXT;
item->text = text;
- item->align = ALIGN_LEFT;
+ item->align = ALIGN_INHERIT;
item->layout = NULL;
}