--- a/src/eric7/MicroPython/MicroPythonWidget.py Wed Aug 30 16:06:08 2023 +0200 +++ b/src/eric7/MicroPython/MicroPythonWidget.py Wed Aug 30 17:23:53 2023 +0200 @@ -1205,12 +1205,21 @@ from .BoardDataDialog import BoardDataDialog try: - boardInfo = self.__device.getBoardInformation() - boardInfo.update( - self.__device.getDeviceData( - ["wifi", "bluetooth", "ethernet", "ntp", "mip", "upip", "local_mip"] + with EricOverrideCursor(): + boardInfo = self.__device.getBoardInformation() + boardInfo.update( + self.__device.getDeviceData( + [ + "wifi", + "bluetooth", + "ethernet", + "ntp", + "mip", + "upip", + "local_mip", + ] + ) ) - ) dlg = BoardDataDialog(boardInfo) dlg.exec()