summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Thurman <tthurman@gnome.org>2009-10-26 17:24:00 -0400
committerThomas Thurman <tthurman@gnome.org>2009-10-26 17:24:00 -0400
commitfda95ce91c029d8f51e8d9b505e8fbf5977ad855 (patch)
tree9b1cfd232d05109d6c9a77112a9e998a289381ef
parentd17be14cc1ee2b8f419a196365cbc431d8bbbf78 (diff)
downloadmetacity-fda95ce91c029d8f51e8d9b505e8fbf5977ad855.tar.gz
'justify' is a synonym for 'left' here
-rw-r--r--src/ui/theme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/theme.c b/src/ui/theme.c
index 2f4c611a..fccf794e 100644
--- a/src/ui/theme.c
+++ b/src/ui/theme.c
@@ -360,7 +360,7 @@ cowbell_style_title_text (ccss_stylesheet_t *stylesheet,
if (ccss_style_get_string (style, "text-align", &align))
{
- if (strcmp (align, "left")==0)
+ if (strcmp (align, "left")==0 || strcmp (align, "justify")==0)
{
pango_layout_set_alignment (layout, PANGO_ALIGN_LEFT);
}