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() |