tests: Use the new progressbar features in the default test.
This commit is contained in:
parent
e1733dd37a
commit
b49b859fac
|
@ -1,12 +1,19 @@
|
||||||
local parent = ... --DOC_HIDE
|
local parent = ... --DOC_HIDE
|
||||||
local wibox = require("wibox") --DOC_HIDE
|
local wibox = require("wibox") --DOC_HIDE
|
||||||
|
local gears = {shape = require("gears.shape") } --DOC_HIDE
|
||||||
|
local beautiful = require("beautiful") --DOC_HIDE
|
||||||
|
|
||||||
parent:add( --DOC_HIDE
|
parent:add( --DOC_HIDE
|
||||||
|
|
||||||
wibox.widget {
|
wibox.widget {
|
||||||
max_value = 1,
|
max_value = 1,
|
||||||
value = 0.33,
|
value = 0.33,
|
||||||
widget = wibox.widget.progressbar
|
forced_height = 20,
|
||||||
|
forced_width = 100,
|
||||||
|
shape = gears.shape.rounded_bar,
|
||||||
|
border_width = 2,
|
||||||
|
border_color = beautiful.border_color,
|
||||||
|
widget = wibox.widget.progressbar,
|
||||||
}
|
}
|
||||||
|
|
||||||
) --DOC_HIDE
|
) --DOC_HIDE
|
||||||
|
|
Loading…
Reference in New Issue