st-private: Fix style
This commit is contained in:
parent
7e5f1fe411
commit
a88433dba6
@ -212,13 +212,16 @@ _st_set_text_from_style (ClutterText *text,
|
||||
pango_attr_list_unref (attribs);
|
||||
|
||||
align = st_theme_node_get_text_align (theme_node);
|
||||
if(align == ST_TEXT_ALIGN_JUSTIFY) {
|
||||
clutter_text_set_justify (text, TRUE);
|
||||
clutter_text_set_line_alignment (text, PANGO_ALIGN_LEFT);
|
||||
} else {
|
||||
clutter_text_set_justify (text, FALSE);
|
||||
clutter_text_set_line_alignment (text, (PangoAlignment) align);
|
||||
}
|
||||
if (align == ST_TEXT_ALIGN_JUSTIFY)
|
||||
{
|
||||
clutter_text_set_justify (text, TRUE);
|
||||
clutter_text_set_line_alignment (text, PANGO_ALIGN_LEFT);
|
||||
}
|
||||
else
|
||||
{
|
||||
clutter_text_set_justify (text, FALSE);
|
||||
clutter_text_set_line_alignment (text, (PangoAlignment) align);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user