hi;

On 27 June 2012 04:12, Tyson Neuroth <tyneur...@gmail.com> wrote:
> I'm sorry if this is something which should be obvious.  I would like to
> change the ClutterSettings "long-press-duration" property.
>
> I can't figure out how I can do this. This is all I could think of to try,
> but obviously is wrong.
>
>> ClutterSettings* Settings = clutter_settings_get_default();
>> Settings->long_press_duration = 0;

ClutterSettings:long-press-duration is a GObject property, and as such
you can change it with g_object_set(), e.g.:

  g_object_set (clutter_settings_get_default (),
"long-press-duration", 500, NULL);

ciao,
 Emmanuele.

-- 
W: http://www.emmanuelebassi.name
B: http://blogs.gnome.org/ebassi/
_______________________________________________
clutter-app-devel-list mailing list
clutter-app-devel-list@clutter-project.org
http://lists.clutter-project.org/listinfo/clutter-app-devel-list

Reply via email to