bin-layer: Fix the property blurbs
The descriptions for the 'y-align' and 'x-align' properties talk about a layer and a layer manager. It seems that these properties are the alignement factors relative to the BinLayout, so document them accordingly.
This commit is contained in:
parent
9ae1729f37
commit
24577a0538
@ -257,7 +257,7 @@ clutter_bin_layer_class_init (ClutterBinLayerClass *klass)
|
|||||||
pspec = g_param_spec_enum ("x-align",
|
pspec = g_param_spec_enum ("x-align",
|
||||||
P_("Horizontal Alignment"),
|
P_("Horizontal Alignment"),
|
||||||
P_("Horizontal alignment for the actor "
|
P_("Horizontal alignment for the actor "
|
||||||
"inside the layer"),
|
"inside the layout manager"),
|
||||||
CLUTTER_TYPE_BIN_ALIGNMENT,
|
CLUTTER_TYPE_BIN_ALIGNMENT,
|
||||||
CLUTTER_BIN_ALIGNMENT_CENTER,
|
CLUTTER_BIN_ALIGNMENT_CENTER,
|
||||||
CLUTTER_PARAM_READWRITE);
|
CLUTTER_PARAM_READWRITE);
|
||||||
@ -269,7 +269,7 @@ clutter_bin_layer_class_init (ClutterBinLayerClass *klass)
|
|||||||
pspec = g_param_spec_enum ("y-align",
|
pspec = g_param_spec_enum ("y-align",
|
||||||
P_("Vertical Alignment"),
|
P_("Vertical Alignment"),
|
||||||
P_("Vertical alignment for the actor "
|
P_("Vertical alignment for the actor "
|
||||||
"inside the layer manager"),
|
"inside the layout manager"),
|
||||||
CLUTTER_TYPE_BIN_ALIGNMENT,
|
CLUTTER_TYPE_BIN_ALIGNMENT,
|
||||||
CLUTTER_BIN_ALIGNMENT_CENTER,
|
CLUTTER_BIN_ALIGNMENT_CENTER,
|
||||||
CLUTTER_PARAM_READWRITE);
|
CLUTTER_PARAM_READWRITE);
|
||||||
|
Loading…
Reference in New Issue
Block a user