From 46c31103b845405c1cb114daaec8b5016f18eebe Mon Sep 17 00:00:00 2001 From: Sean Smith Date: Sat, 11 May 2019 20:00:35 -0400 Subject: [PATCH] Make widget name part of the output --- wtf/text_widget.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wtf/text_widget.go b/wtf/text_widget.go index 0b68b64c..e13298bd 100644 --- a/wtf/text_widget.go +++ b/wtf/text_widget.go @@ -120,7 +120,7 @@ func (widget *TextWidget) Redraw(title, text string, wrap bool) { } func (widget *TextWidget) HelpText() string { - return fmt.Sprintf("\n There is no help available for this widget") + return fmt.Sprintf("\n There is no help available for widget %s", widget.CommonSettings.Module.Type) } /* -------------------- Unexported Functions -------------------- */