1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Fix multiple small issues with widget titles

This commit is contained in:
Chris Cummer
2018-07-28 17:37:05 -07:00
parent 34977f7ffa
commit 3ce6daee71
4 changed files with 14 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ func (widget *Widget) Refresh() {
)
widget.UpdateRefreshedAt()
widget.View.SetTitle(fmt.Sprintf("%s (%d)", widget.Name, len(todayItems)))
widget.View.SetTitle(fmt.Sprintf("%s (%d) ", widget.Name, len(todayItems)))
widget.View.SetText(widget.contentFrom(todayItems))
}