From 588d51ef1e462eefc3761e55dc9ae87f75a3115c Mon Sep 17 00:00:00 2001 From: Thomas White Date: Mon, 13 Jan 2020 22:53:46 +0100 Subject: Styling for segment start markers --- libstorycode/stylesheet.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libstorycode/stylesheet.c') diff --git a/libstorycode/stylesheet.c b/libstorycode/stylesheet.c index 8fd09d4..bc22852 100644 --- a/libstorycode/stylesheet.c +++ b/libstorycode/stylesheet.c @@ -225,7 +225,7 @@ Stylesheet *stylesheet_new() create_style(ss, "", "NARRATIVE"); create_style(ss, "NARRATIVE", "BP"); create_style(ss, "NARRATIVE", "PRESTITLE"); - create_style(ss, "NARRATIVE", "SEGSTART"); + create_style(ss, "NARRATIVE", "SEGMENT_START"); sty = create_style(ss, "", "SLIDE"); sty->geom.w.unit = LENGTH_UNIT; sty->geom.w.len = 1024.0; @@ -566,7 +566,7 @@ const char *stylesheet_get_friendly_name(const char *in) if ( strcmp(in, "BP") == 0 ) return "Bullet point"; if ( strcmp(in, "SLIDETITLE") == 0 ) return "Slide title"; if ( strcmp(in, "PRESTITLE") == 0 ) return "Presentation title"; - if ( strcmp(in, "SEGSTART") == 0 ) return "Start of segment"; + if ( strcmp(in, "SEGMENT_START") == 0 ) return "Start of segment"; if ( strcmp(in, "TEXT") == 0 ) return "Text frame"; if ( strcmp(in, "FOOTER") == 0 ) return "Footer"; return in; -- cgit v1.2.3