src/eric7/MicroPython/MicroPythonWidget.py

branch
eric7
changeset 10173
9c64ac720853
parent 10151
6ab011d1f866
child 10229
e50bbf250343
diff -r 7367a211d865 -r 9c64ac720853 src/eric7/MicroPython/MicroPythonWidget.py
--- 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()

eric ide

mercurial