src/eric7/MicroPython/MicroPythonFileManagerWidget.py

branch
eric7
changeset 9482
a2bc06a54d9d
parent 9473
3f23dbf37dbe
child 9576
be9f8e7e42e0
equal deleted inserted replaced
9481:0b936ff1bbb9 9482:a2bc06a54d9d
620 Private slot handling progress messages sent by the file manager. 620 Private slot handling progress messages sent by the file manager.
621 621
622 @param message message to be shown 622 @param message message to be shown
623 @type str 623 @type str
624 """ 624 """
625 from .MicroPythonProgressInfoDialog import MicroPythonProgressInfoDialog
626
625 if self.__progressInfoDialog is None: 627 if self.__progressInfoDialog is None:
626 from .MicroPythonProgressInfoDialog import MicroPythonProgressInfoDialog
627
628 self.__progressInfoDialog = MicroPythonProgressInfoDialog(self) 628 self.__progressInfoDialog = MicroPythonProgressInfoDialog(self)
629 self.__progressInfoDialog.finished.connect( 629 self.__progressInfoDialog.finished.connect(
630 self.__progressInfoDialogFinished 630 self.__progressInfoDialogFinished
631 ) 631 )
632 self.__progressInfoDialog.show() 632 self.__progressInfoDialog.show()

eric ide

mercurial