mirror of
https://github.com/brl/mutter.git
synced 2025-01-11 12:12:25 +00:00
[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:
parent
722360774c
commit
04bb789941
@ -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));
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user