Mon, 27 Feb 2023 11:20:50 +0100
Added a line to clear the MicroPython OSD info whenn connecting or disconnecting a device.
src/eric7/MicroPython/MicroPythonWidget.py | file | annotate | diff | comparison | revisions |
--- a/src/eric7/MicroPython/MicroPythonWidget.py Sun Feb 26 18:04:56 2023 +0100 +++ b/src/eric7/MicroPython/MicroPythonWidget.py Mon Feb 27 11:20:50 2023 +0100 @@ -714,6 +714,7 @@ Private slot to connect to the selected device or disconnect from the currently connected device. """ + self.__osdLabel.clear() if self.__linkConnected: with EricOverrideCursor(): self.__disconnectFromDevice()