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,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 {