diff options
author | Daniel Boles <dboles.src@gmail.com> | 2018-05-26 01:06:00 +0100 |
---|---|---|
committer | Daniel Boles <dboles.src@gmail.com> | 2018-05-26 01:07:19 +0100 |
commit | bd82962e21da6abd096af9806fb682f3c61307f2 (patch) | |
tree | f8573ba4a30c8e44d19b841094c62869145b77de | |
parent | 6ff7fdfdc44a94c5a21e30f9874ee9b9c1929d76 (diff) | |
download | gtk+-bd82962e21da6abd096af9806fb682f3c61307f2.tar.gz |
SpinButton: Fix an obviously wrong arg description
:climb-rate is not about what you get when you single-click on a button,
as this implied: it's what happens if you hold down a button or a key.
Fix the description of @climb_rate to new(), and while here, mention the
key in the blurb of :climb-rate itself.
-rw-r--r-- | gtk/gtkspinbutton.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index 5a09ba8f36..ec9102157b 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -385,7 +385,7 @@ gtk_spin_button_class_init (GtkSpinButtonClass *class) PROP_CLIMB_RATE, g_param_spec_double ("climb-rate", P_("Climb Rate"), - P_("The acceleration rate when you hold down a button"), + P_("The acceleration rate when you hold down a button or key"), 0.0, G_MAXDOUBLE, 0.0, GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY)); @@ -1979,8 +1979,8 @@ gtk_spin_button_configure (GtkSpinButton *spin_button, * gtk_spin_button_new: * @adjustment: (allow-none): the #GtkAdjustment object that this spin * button should use, or %NULL - * @climb_rate: specifies how much the spin button changes when an arrow - * is clicked on + * @climb_rate: specifies by how much the rate of change in the value will + * accelerate if you continue to hold down an up/down button or arrow key * @digits: the number of decimal places to display * * Creates a new #GtkSpinButton. |