Remove unimplemented color configuration

Will probably end up doing this differently anyway
This commit is contained in:
Drew DeVault 2019-05-17 11:52:38 -04:00
parent 89ffd8653d
commit fcdcd32de7
3 changed files with 3 additions and 45 deletions
widgets

View file

@ -23,9 +23,9 @@ type MessageList struct {
store atomic.Value // *lib.MessageStore
}
// TODO: fish in config
func NewMessageList(logger *log.Logger) *MessageList {
func NewMessageList(conf *config.AercConfig, logger *log.Logger) *MessageList {
ml := &MessageList{
conf: conf,
logger: logger,
selected: 0,
spinner: NewSpinner(),