doc(layout.flex): Hide `fill_space` property doc
Add an explicite `@property` tag to the `wibox.layout.flex` doc comments to override the `fill_space` property from `wibox.layout.fixed` and mark it as hidden thanks to `@hidden`.
This commit is contained in:
parent
25f4cfcb05
commit
b184f95195
|
@ -16,6 +16,16 @@ local gtable = require("gears.table")
|
||||||
|
|
||||||
local flex = {}
|
local flex = {}
|
||||||
|
|
||||||
|
-- {{{ Override inherited properties we want to hide
|
||||||
|
|
||||||
|
--- From `wibox.layout.fixed`.
|
||||||
|
-- @property fill_space
|
||||||
|
-- @tparam boolean fill_space
|
||||||
|
-- @propemits true false
|
||||||
|
-- @hidden
|
||||||
|
|
||||||
|
-- }}}
|
||||||
|
|
||||||
--- Add some widgets to the given fixed layout.
|
--- Add some widgets to the given fixed layout.
|
||||||
--
|
--
|
||||||
-- @tparam widget ... Widgets that should be added (must at least be one).
|
-- @tparam widget ... Widgets that should be added (must at least be one).
|
||||||
|
|
Loading…
Reference in New Issue