Reduce 'scroll-time' default value to 1 second.
authorClaudio Saavedra <csaavedra@igalia.com>
Wed, 20 May 2009 11:14:37 +0000 (14:14 +0300)
committerClaudio Saavedra <csaavedra@igalia.com>
Wed, 20 May 2009 11:49:40 +0000 (14:49 +0300)
* hildon/hildon-pannable-area.c (hildon_pannable_area_class_init):
Reduce the default value for 'scroll_time' to 1 second, since the
current initial scrolling takes too much time.

ChangeLog
hildon/hildon-pannable-area.c

index fad7422..b3fcb66 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2009-05-20  Claudio Saavedra  <csaavedra@igalia.com>
 
+       * hildon/hildon-pannable-area.c (hildon_pannable_area_class_init):
+       Reduce the default value for 'scroll_time' to 1 second, since the
+       current initial scrolling takes too much time.
+
+2009-05-20  Claudio Saavedra  <csaavedra@igalia.com>
+
        * hildon/hildon-pannable-area.c (hildon_pannable_area_init): Do not
        calculate velocity factor during initialization, since the properties
        are not yet set.
index bdd1a1b..b3f0aee 100644 (file)
@@ -510,7 +510,7 @@ hildon_pannable_area_class_init (HildonPannableAreaClass * klass)
                                   g_param_spec_double ("scroll_time",
                                                        "Time to scroll to a position",
                                                        "The time to scroll to a position when calling the hildon_pannable_scroll_to function",
-                                                       1.0, 20.0, 10.0,
+                                                       0.0, 20.0, 1.0,
                                                        G_PARAM_READWRITE |
                                                        G_PARAM_CONSTRUCT));