From 24577a053868bfa39c7758dea2173cf090230de2 Mon Sep 17 00:00:00 2001 From: Damien Lespiau Date: Tue, 5 Oct 2010 07:44:49 +0100 Subject: [PATCH] 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. --- clutter/clutter-bin-layout.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clutter/clutter-bin-layout.c b/clutter/clutter-bin-layout.c index e9223e800..971a8f44d 100644 --- a/clutter/clutter-bin-layout.c +++ b/clutter/clutter-bin-layout.c @@ -257,7 +257,7 @@ clutter_bin_layer_class_init (ClutterBinLayerClass *klass) pspec = g_param_spec_enum ("x-align", P_("Horizontal Alignment"), P_("Horizontal alignment for the actor " - "inside the layer"), + "inside the layout manager"), CLUTTER_TYPE_BIN_ALIGNMENT, CLUTTER_BIN_ALIGNMENT_CENTER, CLUTTER_PARAM_READWRITE); @@ -269,7 +269,7 @@ clutter_bin_layer_class_init (ClutterBinLayerClass *klass) pspec = g_param_spec_enum ("y-align", P_("Vertical Alignment"), P_("Vertical alignment for the actor " - "inside the layer manager"), + "inside the layout manager"), CLUTTER_TYPE_BIN_ALIGNMENT, CLUTTER_BIN_ALIGNMENT_CENTER, CLUTTER_PARAM_READWRITE);