2009-03-17 Alejandro G. Castro <alex@igalia.com>
authorAlejandro G. Castro <alex@igalia.com>
Tue, 17 Mar 2009 09:40:27 +0000 (09:40 +0000)
committerAlejandro G. Castro <alex@igalia.com>
Tue, 17 Mar 2009 09:40:27 +0000 (09:40 +0000)
* src/hildon-pannable-area.c,
(hildon_pannable_area_class_init): Modified the default panning
threshold of the widget to 6px.

Fixes: NB#105427 (Clicking and dragging ( for pixel values more
than the threshold value ) within the button is not sending the
event to the clild)

ChangeLog
src/hildon-pannable-area.c

index 3f258ff..daea269 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2009-03-17  Alejandro G. Castro  <alex@igalia.com>
+
+       * src/hildon-pannable-area.c,
+       (hildon_pannable_area_class_init): Modified the default panning
+       threshold of the widget to 6px.
+
+       Fixes: NB#105427 (Clicking and dragging ( for pixel values more
+       than the threshold value ) within the button is not sending the
+       event to the clild)
+
 2009-03-16  Claudio Saavedra  <csaavedra@igalia.com>
 
        * src/hildon-touch-selector.c (_create_new_column): Unset GTK_CAN_FOCUS
index 0da668d..67bf372 100644 (file)
@@ -433,7 +433,7 @@ hildon_pannable_area_class_init (HildonPannableAreaClass * klass)
                                                      "Threshold to consider a motion event an scroll",
                                                      "Amount of pixels to consider a motion event an scroll, if it is less"
                                                       "it is a click detected incorrectly by the touch screen.",
-                                                     0, G_MAXUINT, 3,
+                                                     0, G_MAXUINT, 6,
                                                      G_PARAM_READWRITE |
                                                      G_PARAM_CONSTRUCT));