More improvements to startup and closedown stability. Remove some hack code

This commit is contained in:
Ben Jackson 2019-02-12 09:01:09 +00:00
commit e006b15100
5 changed files with 80 additions and 54 deletions

View file

@ -82,7 +82,11 @@ class OutputView( object ):
with utils.RestoreCurrentBuffer( self._window ):
self._ShowOutput( category )
def ConnectionUp( self, connection ):
self._connection = connection
def ConnectionClosed( self ):
# Don't clear because output is probably still useful
self._connection = None
def Reset( self ):