aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-04-28 21:40:14 +0200
committerThomas White <taw@bitwiz.me.uk>2019-04-28 21:40:14 +0200
commit2897b564b0a1c202f3337486057ac442843ef572 (patch)
treee6d2406b3473ceb7ea235eb17e0f9c3d96841732
parent4275077adf24fbbd5dfa9de80192ebec45c619c0 (diff)
Don't set alignment for narrative
-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;
}