TempStart restarts the screen after it was temporarily disabled
(screenWasNil bool)
| 169 | |
| 170 | // TempStart restarts the screen after it was temporarily disabled |
| 171 | func TempStart(screenWasNil bool) { |
| 172 | if !screenWasNil { |
| 173 | Init() |
| 174 | Unlock() |
| 175 | |
| 176 | if RestartCallback != nil { |
| 177 | RestartCallback() |
| 178 | } |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | // Init creates and initializes the tcell screen |
| 183 | func Init() error { |
no test coverage detected