summaryrefslogtreecommitdiff
path: root/ges/ges-enums.c
diff options
context:
space:
mode:
authorLuis de Bethencourt <luis@debethencourt.com>2011-08-08 18:30:42 +0200
committerLuis de Bethencourt <luis@debethencourt.com>2011-08-08 18:30:42 +0200
commit09ef6dbeac6b0dec513f24ad38adeacae65cdad4 (patch)
tree81309017a93a93ab8f1558e342b96eb95f1b6531 /ges/ges-enums.c
parent0292e86b9b38aedb69ebf1c4e0489a3cf02623c3 (diff)
ges-enums: completed support for all options in TextAlign
Added the center and position options to the vertical, and horizontal properties of text alignment.
Diffstat (limited to 'ges/ges-enums.c')
-rw-r--r--ges/ges-enums.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ges/ges-enums.c b/ges/ges-enums.c
index 003da6d5..aaa491d1 100644
--- a/ges/ges-enums.c
+++ b/ges/ges-enums.c
@@ -436,6 +436,8 @@ ges_text_valign_get_type (void)
{GES_TEXT_VALIGN_BASELINE, "baseline", "baseline"},
{GES_TEXT_VALIGN_BOTTOM, "bottom", "bottom"},
{GES_TEXT_VALIGN_TOP, "top", "top"},
+ {GES_TEXT_VALIGN_POSITION, "position", "position"},
+ {GES_TEXT_VALIGN_CENTER, "center", "center"},
{0, NULL, NULL},
};
@@ -456,6 +458,7 @@ ges_text_halign_get_type (void)
{GES_TEXT_HALIGN_LEFT, "left", "left"},
{GES_TEXT_HALIGN_CENTER, "center", "center"},
{GES_TEXT_HALIGN_RIGHT, "right", "right"},
+ {GES_TEXT_HALIGN_POSITION, "position", "position"},
{0, NULL, NULL},
};