--- a/eric6/UI/UserInterface.py Mon Aug 12 14:55:08 2019 +0200 +++ b/eric6/UI/UserInterface.py Tue Aug 13 15:51:35 2019 +0200 @@ -910,9 +910,9 @@ if Preferences.getUI("ShowMicroPython"): # Create the MicroPython part of the user interface logging.debug("Creating MicroPython Widget...") - from MicroPython.MicroPythonReplWidget import MicroPythonReplWidget - self.microPythonRepl = MicroPythonReplWidget(self) - self.rToolbox.addItem(self.microPythonRepl, + from MicroPython.MicroPythonWidget import MicroPythonWidget + self.microPythonWidget = MicroPythonWidget(self) + self.rToolbox.addItem(self.microPythonWidget, UI.PixmapCache.getIcon("micropython"), self.tr("MicroPython")) @@ -1107,10 +1107,10 @@ if Preferences.getUI("ShowMicroPython"): # Create the MicroPython part of the user interface logging.debug("Creating MicroPython Widget...") - from MicroPython.MicroPythonReplWidget import MicroPythonReplWidget - self.microPythonRepl = MicroPythonReplWidget(self) + from MicroPython.MicroPythonWidget import MicroPythonWidget + self.microPythonWidget = MicroPythonWidget(self) self.rightSidebar.addTab( - self.microPythonRepl, UI.PixmapCache.getIcon("micropython"), + self.microPythonWidget, UI.PixmapCache.getIcon("micropython"), self.tr("MicroPython")) ####################################################