[StTable] fix x-align/y-align properties to be StAlign, not double

This puts it in sync with StBin and StBoxLayout

https://bugzilla.gnome.org/show_bug.cgi?id=609848
This commit is contained in:
Dan Winship 2010-02-15 12:08:45 -05:00
parent 4749393ab5
commit f52744cfbc
6 changed files with 32 additions and 66 deletions

View file

@ -47,8 +47,8 @@ table.add(L("5", "#ff00ff"),
{ row: 2, col: 1, x_expand: 0 });
table.add(L("6", "#00ffff"),
{ row: 2, col: 2,
x_expand: 0, x_fill: 0, x_align: 1.0,
y_expand: 0, y_fill: 0, y_align: 1.0 });
x_expand: 0, x_fill: 0, x_align: St.Align.END,
y_expand: 0, y_fill: 0, y_align: St.Align.END });
////////////////////////////////////////////////////////////////////////////////