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:
Aire-One 2021-03-29 23:51:14 +02:00
parent 25f4cfcb05
commit b184f95195
1 changed files with 10 additions and 0 deletions

View File

@ -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).