From 749318ead6b071b005dc6a638b7190b627e9bbdf Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Sat, 28 Jul 2018 17:40:13 -0700 Subject: [PATCH] Fix the Todoist widget title --- todoist/display.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/todoist/display.go b/todoist/display.go index 31626997..4584300d 100644 --- a/todoist/display.go +++ b/todoist/display.go @@ -16,7 +16,7 @@ func (widget *Widget) display() { return } - widget.View.SetTitle(fmt.Sprintf("%s- [green]%s[white] ", widget.Name, proj.Project.Name)) + widget.View.SetTitle(fmt.Sprintf(" [green]%s[white] ", proj.Project.Name)) str := wtf.SigilStr(len(widget.projects), widget.idx, widget.View) + "\n" maxLen := proj.LongestLine()