StylesChanged notifies the skin changed.
(*config.Styles)
| 89 | |
| 90 | // StylesChanged notifies the skin changed. |
| 91 | func (l *Logger) StylesChanged(*config.Styles) { |
| 92 | l.SetBackgroundColor(l.app.Styles.BgColor()) |
| 93 | l.SetTextColor(l.app.Styles.FgColor()) |
| 94 | l.SetBorderFocusColor(l.app.Styles.Frame().Border.FocusColor.Color()) |
| 95 | } |
| 96 | |
| 97 | // SetSubject updates the subject. |
| 98 | func (l *Logger) SetSubject(s string) { |