docs: Improve documentation for ClutterText

Ensure that the rule for :cursor-visible are documented.
This commit is contained in:
Emmanuele Bassi 2015-11-30 13:47:15 +00:00
parent 388fe9b542
commit c8ef4349fe

View File

@ -3484,6 +3484,9 @@ clutter_text_class_init (ClutterTextClass *klass)
* Whether it is possible to select text, either using the pointer * Whether it is possible to select text, either using the pointer
* or the keyboard. * or the keyboard.
* *
* This property depends on the #ClutterActor:reactive property being
* set to %TRUE.
*
* Since: 1.0 * Since: 1.0
*/ */
pspec = g_param_spec_boolean ("selectable", pspec = g_param_spec_boolean ("selectable",
@ -3512,9 +3515,11 @@ clutter_text_class_init (ClutterTextClass *klass)
/** /**
* ClutterText:cursor-visible: * ClutterText:cursor-visible:
* *
* Whether the input cursor is visible or not, it will only be visible * Whether the input cursor is visible or not.
* if both #ClutterText:cursor-visible and #ClutterText:editable are *
* set to %TRUE. * The cursor will only be visible if this property and either
* the #ClutterText:editable or the #ClutterText:selectable properties
* are set to %TRUE.
* *
* Since: 1.0 * Since: 1.0
*/ */