From db5d50c9af34a019a40238a54bbab3413bc3e413 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Fri, 30 Aug 2019 03:24:18 -0700 Subject: [PATCH] Set the text wrap of the clocks module to false --- modules/clocks/display.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/clocks/display.go b/modules/clocks/display.go index 9f61fdf8..36379b1f 100644 --- a/modules/clocks/display.go +++ b/modules/clocks/display.go @@ -27,5 +27,5 @@ func (widget *Widget) display(clocks []Clock, dateFormat string, timeFormat stri } } - widget.Redraw(func() (string, string, bool) { return widget.CommonSettings().Title, str, true }) + widget.Redraw(func() (string, string, bool) { return widget.CommonSettings().Title, str, false }) }