Add a fake validation to load the preset data once when the user press the next button.
[bertos.git] / wizard / BFinalPage.py
index 1285850aea9bb2fb66a2b6573ecfae403316832b..020b5a58a61ed7eb3b6b1a42c49508c792a76d9b 100644 (file)
@@ -54,6 +54,7 @@ class BFinalPage(BWizardPage):
     ## Overloaded BWizardPage methods ##
         
     def reloadData(self):
+        self.setVisible(False)
         """
         Overload of the BWizardPage reloadData method.
         """
@@ -64,11 +65,15 @@ class BFinalPage(BWizardPage):
                 # locked.
                 self.project.createBertosProject()
             except OSError, e:
-                QMessageBox.critical(self, self.tr("Error removing destination directory"), self.tr("Close all the application using this directory and retry."))
+                QMessageBox.critical(
+                    self,
+                    self.tr("Error removing destination directory"),
+                    self.tr("Error removing the destination directory. This directory or a file in it is in use by another user or application.\nClose the application which is using the directory and retry."))
                 self.wizard().back()
                 return
         finally:
             QApplication.instance().restoreOverrideCursor()
+        self.setVisible(True)
         self._plugin_dict = {}
         if os.name == "nt":
             output = self.projectInfo("OUTPUT")