From 2897b564b0a1c202f3337486057ac442843ef572 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Sun, 28 Apr 2019 21:40:14 +0200 Subject: Don't set alignment for narrative --- libstorycode/narrative.c | 6 +++--- 1 file 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; } -- cgit v1.2.3