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
This commit is contained in:
Xavi Artigas 2018-09-26 09:21:26 +02:00
parent e9e63f3c0d
commit 064ae4f3a6
1 changed files with 11 additions and 11 deletions

View File

@ -17,6 +17,10 @@ mixin Efl.Ui.Focus.Object
} }
} }
@property focus { @property focus {
get {
[[Returns whether the widget is currently focused or not.]]
}
set @protected {
[[This is called by the manager and should never be called by [[This is called by the manager and should never be called by
anyone else. anyone else.
@ -26,14 +30,10 @@ mixin Efl.Ui.Focus.Object
The function emits the focus state events, if focus is The function emits the focus state events, if focus is
different to the previous state. different to the previous state.
]] ]]
get {
}
set @protected {
} }
values { values {
focus : bool; [[The state in which the object should be put]] focus : bool; [[The focused state of the object]]
} }
} }
@property focus_manager { @property focus_manager {