(message, details string)
| 321 | } |
| 322 | |
| 323 | func (a *App) setError(message, details string) { |
| 324 | errorMsg := message |
| 325 | if details != "" { |
| 326 | errorMsg += ": " + details |
| 327 | } |
| 328 | a.statusMessage = " ERROR: " + errorMsg |
| 329 | a.statusTimeout = 0 |
| 330 | } |
| 331 | |
| 332 | func (a *App) View() string { |
| 333 | if !a.layout.IsMinimumSize() { |
no outgoing calls
no test coverage detected