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

Merge branch 'master' into fix-date-comparison

This commit is contained in:
Chris Cummer
2018-08-01 15:00:42 -04:00
committed by GitHub

View File

@@ -128,9 +128,10 @@ func (tracker *FocusTracker) focus(idx int) {
} }
view := widget.TextView() view := widget.TextView()
view.SetBorderColor(colorFor(Config.UString("wtf.colors.border.focused", "gray")))
tracker.App.SetFocus(view) tracker.App.SetFocus(view)
view.SetBorderColor(colorFor(Config.UString("wtf.colors.border.focused", "gray"))) tracker.App.Draw()
} }
func (tracker *FocusTracker) focusables() []Wtfable { func (tracker *FocusTracker) focusables() []Wtfable {