doc(awful.client): Document special signal semantics
While the documentation already specified the signal via `@emits`, it did not make it clear that this signal is emitted on a `tag` object, rather than the `client`. Signed-off-by: Lucas Schwiderski <lucas@lschwiderski.de>
This commit is contained in:
parent
e0dea455c1
commit
1b49a20e0d
|
@ -1159,10 +1159,13 @@ end
|
|||
|
||||
--- Change window factor of a client.
|
||||
--
|
||||
-- This will emit `property::windowfact` on the specific tag object
|
||||
-- `c.screen.selected_tag`.
|
||||
--
|
||||
-- @legacylayout awful.client.incwfact
|
||||
-- @tparam number add Amount to increase/decrease the client's window factor.
|
||||
-- @tparam number add Amount to increase/decrease the client's window factor by.
|
||||
-- Should be between `-current_window_factor` and something close to
|
||||
-- infinite. The normalisation then ensures that the sum of all factors is 1.
|
||||
-- infinite. Normalisation then ensures that the sum of all factors is 1.
|
||||
-- @tparam client c the client.
|
||||
-- @emits property::windowfact
|
||||
function client.incwfact(add, c)
|
||||
|
|
Loading…
Reference in New Issue