Remove unused fields from LayoutInfo
The x_expand and y_expand members would mess up the initialization of the constant LayoutInfo default structure.
This commit is contained in:
parent
b074db869c
commit
f4af52ca7f
@ -150,8 +150,6 @@ struct _SizeRequest
|
||||
* @fixed_x: the fixed position of the actor, set using clutter_actor_set_x()
|
||||
* @fixed_y: the fixed position of the actor, set using clutter_actor_set_y()
|
||||
* @margin: the composed margin of the actor
|
||||
* @x_expand: whether the actor should expand horizontally
|
||||
* @y_expand: whether the actor should expand vertically
|
||||
* @x_align: the horizontal alignment, if the actor expands horizontally
|
||||
* @y_align: the vertical alignment, if the actor expands vertically
|
||||
* @min_width: the minimum width, set using clutter_actor_set_min_width()
|
||||
@ -169,9 +167,6 @@ struct _ClutterLayoutInfo
|
||||
|
||||
ClutterMargin margin;
|
||||
|
||||
guint x_expand : 1;
|
||||
guint y_expand : 1;
|
||||
|
||||
guint x_align : 4;
|
||||
guint y_align : 4;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user