* src/hildon-pannable-area.c (hildon_pannable_area_class_init): Set the min value...
authorAlejandro G. Castro <alex@igalia.com>
Tue, 29 Jul 2008 10:57:16 +0000 (10:57 +0000)
committerAlejandro G. Castro <alex@igalia.com>
Tue, 29 Jul 2008 10:57:16 +0000 (10:57 +0000)
ChangeLog
src/hildon-pannable-area.c

index a672e34..86ed246 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2008-07-29  Alejandro G. Castro         <alex@igalia.com>
 
+       * src/hildon-pannable-area.c
+       (hildon_pannable_area_class_init): Set the min value of the
+       overshoot properties to zero, which points out that not
+       overshooting allowed.
+
+2008-07-29  Alejandro G. Castro         <alex@igalia.com>
+
        Modified the procedure to get the widget at a point inside the
        pannable area when using the movement type signals. Now the user
        has to call a function to get the child, that way we just
index 62452d0..e0182e4 100644 (file)
@@ -1769,7 +1769,7 @@ hildon_pannable_area_class_init (HildonPannableAreaClass * klass)
                                   g_param_spec_int ("vovershoot_max",
                                                      "Vertical overshoot distance",
                                                      "Space we allow the widget to pass over its vertical limits when hitting the edges, set 0 in order to deactivate overshooting.",
-                                                     G_MININT, G_MAXINT, 150,
+                                                     0, G_MAXINT, 150,
                                                      G_PARAM_READWRITE |
                                                      G_PARAM_CONSTRUCT));
 
@@ -1778,7 +1778,7 @@ hildon_pannable_area_class_init (HildonPannableAreaClass * klass)
                                   g_param_spec_int ("hovershoot_max",
                                                      "Horizontal overshoot distance",
                                                      "Space we allow the widget to pass over its horizontal limits when hitting the edges, set 0 in order to deactivate overshooting.",
-                                                     G_MININT, G_MAXINT, 150,
+                                                     0, G_MAXINT, 150,
                                                      G_PARAM_READWRITE |
                                                      G_PARAM_CONSTRUCT));