src/eric7/UI/UserInterface.py

branch
eric7
changeset 10505
5d6bb914036e
parent 10500
40fc136e7002
child 10511
eae654129780
diff -r 28a61f7ed86a -r 5d6bb914036e src/eric7/UI/UserInterface.py
--- a/src/eric7/UI/UserInterface.py	Tue Jan 16 14:24:21 2024 +0100
+++ b/src/eric7/UI/UserInterface.py	Tue Jan 16 14:35:26 2024 +0100
@@ -8389,29 +8389,14 @@
         if not Preferences.isConfigured():
             self.__initDebugToolbarsLayout()
 
-            if Preferences.hasEric6Configuration():
-                yes = EricMessageBox.yesNo(
-                    self,
-                    self.tr("First time usage"),
-                    self.tr(
-                        "eric7 has not been configured yet but an eric6"
-                        " configuration was found. Shall this be"
-                        " imported?"
-                    ),
-                    yesDefault=True,
-                )
-                if yes:
-                    Preferences.importEric6Configuration()
-            else:
-                EricMessageBox.information(
-                    self,
-                    self.tr("First time usage"),
-                    self.tr(
-                        """eric has not been configured yet. """
-                        """The configuration dialog will be started."""
-                    ),
-                )
-
+            EricMessageBox.information(
+                self,
+                self.tr("First time usage"),
+                self.tr(
+                    """eric has not been configured yet. """
+                    """The configuration dialog will be started."""
+                ),
+            )
             self.showPreferences()
             Preferences.setConfigured()
 

eric ide

mercurial