eric6/UI/UserInterface.py

branch
micropython
changeset 7134
21d23ca51680
parent 7119
5f609e77de99
child 7149
6a9d4a241962
--- 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"))
         
         ####################################################

eric ide

mercurial