[texture] fix load-async and load-data-async properties.

Removed the G_PARAM_CONSTRUCT from the property registration of
"load-async" and "load-data-async". It made it impossible to use only
load-data-async, as the async loading state would be unset when
load-async got set it's default FALSE value.
This commit is contained in:
Øyvind Kolås 2009-06-30 16:48:53 +01:00
parent 722360774c
commit 04bb789941

View File

@ -1046,7 +1046,7 @@ clutter_texture_class_init (ClutterTextureClass *klass)
"Load files inside a thread to avoid blocking when "
"loading images.",
FALSE,
CLUTTER_PARAM_WRITABLE | G_PARAM_CONSTRUCT));
CLUTTER_PARAM_WRITABLE));
/**
@ -1064,7 +1064,7 @@ clutter_texture_class_init (ClutterTextureClass *klass)
"Decode image data files inside a thread to reduce "
"blocking when loading images.",
FALSE,
CLUTTER_PARAM_WRITABLE | G_PARAM_CONSTRUCT));
CLUTTER_PARAM_WRITABLE));