From c308d1b6c2e635301b8d5044cf13d51c021bac16 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Sat, 6 Jul 2019 02:10:06 -0700 Subject: [PATCH] Add help tag to Title in common_settings --- cfg/common_settings.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cfg/common_settings.go b/cfg/common_settings.go index 0b0b569a..1af9860a 100644 --- a/cfg/common_settings.go +++ b/cfg/common_settings.go @@ -47,9 +47,9 @@ type Common struct { Position `help:"Defines where in the grid this module’s widget will be displayed."` Sigils - Enabled bool `help:"Determines whether or not this module is executed and if its data displayed onscreen." values:"true, false"` - RefreshInterval int `help:"How often, in seconds, this module will update its data." values:"A positive integer, 0..n." optional:"true"` - Title string + Enabled bool `help:"Determines whether or not this module is executed and if its data displayed onscreen." values:"true, false"` + RefreshInterval int `help:"How often, in seconds, this module will update its data." values:"A positive integer, 0..n." optional:"true"` + Title string `help:"The title string to show when displaying this module" optional:"true"` Config *config.Config focusChar int `help:"Define one of the number keys as a short cut key to access the widget." optional:"true"`