No backups for no name files

This commit is contained in:
Zachary Yedidia
2019-12-22 13:43:29 -05:00
parent c4d5d7c195
commit fc706bc404
7 changed files with 18 additions and 11 deletions

View File

@@ -58,7 +58,7 @@ func (i *InfoBuf) Message(msg ...interface{}) {
displayMessage := fmt.Sprint(msg...)
// if there is no active prompt then style and display the message as normal
i.Msg = displayMessage
i.HasMessage = true
i.HasMessage, i.HasError = true, false
}
}