summaryrefslogtreecommitdiff
path: root/gtk/gtkalignment.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-10-24 14:30:39 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-10-24 14:30:39 +0000
commit679ca1ae869679281448f6e39424d9f551f33b7e (patch)
tree57ac7ebae47c79dfbf93976d5937a8273352561c /gtk/gtkalignment.c
parentb7c639eafe40712d5515d4ca647380bda4b03bf9 (diff)
downloadgtk+-679ca1ae869679281448f6e39424d9f551f33b7e.tar.gz
Improve dreadful tooltips.
Wed Oct 24 10:29:47 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkalignment.c (gtk_alignment_class_init): Improve dreadful tooltips.
Diffstat (limited to 'gtk/gtkalignment.c')
-rw-r--r--gtk/gtkalignment.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkalignment.c b/gtk/gtkalignment.c
index 44c759dab3..5db7589c72 100644
--- a/gtk/gtkalignment.c
+++ b/gtk/gtkalignment.c
@@ -100,7 +100,7 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
PROP_XALIGN,
g_param_spec_float("xalign",
_("Horizontal alignment"),
- _("Value between 0.0 and 1.0 to indicate X alignment"),
+ _("Horizontal position of child in available space. 0.0 is left aligned, 1.0 is right aligned"),
0.0,
1.0,
0.5,
@@ -110,7 +110,7 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
PROP_YALIGN,
g_param_spec_float("yalign",
_("Vertical alignment"),
- _("Value between 0.0 and 1.0 to indicate Y alignment"),
+ _("Vertical position of child in available space. 0.0 is top aligned, 1.0 is bottom aligned"),
0.0,
1.0,
0.5,
@@ -119,7 +119,7 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
PROP_XSCALE,
g_param_spec_float("xscale",
_("Horizontal scale"),
- _("Value between 0.0 and 1.0 to indicate X scale"),
+ _("If available horizontal space is bigger than needed for the child, how much of it to use for the child. 0.0 means none, 1.0 means all"),
0.0,
1.0,
1.0,
@@ -128,7 +128,7 @@ gtk_alignment_class_init (GtkAlignmentClass *class)
PROP_YSCALE,
g_param_spec_float("yscale",
_("Vertical scale"),
- _("Value between 0.0 and 1.0 to indicate Y scale"),
+ _("If available vertical space is bigger than needed for the child, how much of it to use for the child. 0.0 means none, 1.0 means all"),
0.0,
1.0,
1.0,