Commit b102287f authored by Francois Cartegnie's avatar Francois Cartegnie

text_style: missing text_style when copying segments

parent 2fdb67da
......@@ -208,6 +208,8 @@ text_segment_t *text_segment_Copy( text_segment_t *p_src )
while( p_src && p_src->p_next ) {
text_segment_t *p_next = text_segment_New( p_src->psz_text );
if( p_next )
p_next->style = text_style_Duplicate( p_src->style );
p_src = p_src->p_next;
if( p_dst == NULL )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment