Resolve "dock_area.clear_all() kills RPC communication"
Description
This MR removes self.client.shutdown()
calls in cleanup
(or close
) for widgets.
Indeed the connection, which is a singleton object, belongs to the application ; the client connection should not be shutdown by individual widgets, which cannot know if it is still in use, but from the application instead (when the connection is not needed anymore).
This last part was already done in a previous MR.
Closes #269 (closed)
Edited by guijar_m