Fix group widget
This commit is contained in:
parent
785f6a36bf
commit
a27fde72ee
1 changed files with 6 additions and 0 deletions
|
|
@ -55,6 +55,12 @@ func (widget *Group) Update(ctx context.Context) {
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (widget *Group) SetProviders(providers *Providers) {
|
||||||
|
for i := range widget.Widgets {
|
||||||
|
widget.Widgets[i].SetProviders(providers)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func (widget *Group) RequiresUpdate(now *time.Time) bool {
|
func (widget *Group) RequiresUpdate(now *time.Time) bool {
|
||||||
for i := range widget.Widgets {
|
for i := range widget.Widgets {
|
||||||
if widget.Widgets[i].RequiresUpdate(now) {
|
if widget.Widgets[i].RequiresUpdate(now) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue