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