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:
Damien Lespiau 2010-10-05 07:44:49 +01:00
parent 9ae1729f37
commit 24577a0538

View File

@ -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);