From 064ae4f3a69108f28519beb12b5bb0786642b301 Mon Sep 17 00:00:00 2001 From: Xavi Artigas Date: Wed, 26 Sep 2018 09:21:26 +0200 Subject: [PATCH] docs: Fix Efl.Ui.Focus.Object.Focus() docs Summary: The same description was used for both the Setter and the Getter, which makes no sense. Reviewers: zmike, bu5hm4n, bryceharrington, devilhorns Reviewed By: bu5hm4n, devilhorns Subscribers: cedric, #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D7071 --- src/lib/elementary/efl_ui_focus_object.eo | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/lib/elementary/efl_ui_focus_object.eo b/src/lib/elementary/efl_ui_focus_object.eo index a69b3c42fe..77be807ff7 100644 --- a/src/lib/elementary/efl_ui_focus_object.eo +++ b/src/lib/elementary/efl_ui_focus_object.eo @@ -17,23 +17,23 @@ mixin Efl.Ui.Focus.Object } } @property focus { - [[This is called by the manager and should never be called by - anyone else. - - It can be used by configuring a focus object to adapt to - any changes that are required. - - The function emits the focus state events, if focus is - different to the previous state. - ]] get { - + [[Returns whether the widget is currently focused or not.]] } set @protected { + [[This is called by the manager and should never be called by + anyone else. + + It can be used by configuring a focus object to adapt to + any changes that are required. + + The function emits the focus state events, if focus is + different to the previous state. + ]] } values { - focus : bool; [[The state in which the object should be put]] + focus : bool; [[The focused state of the object]] } } @property focus_manager {