diff -r 8574ff3f3a0c -r 05749c827c77 eric6/Toolbox/Startup.py --- a/eric6/Toolbox/Startup.py Thu Oct 14 17:46:41 2021 +0200 +++ b/eric6/Toolbox/Startup.py Thu Oct 21 17:58:08 2021 +0200 @@ -162,14 +162,18 @@ """ Module function to set the Qt library paths correctly for windows systems. """ - if Globals.isWindowsPlatform(): - libPath = os.path.join(Globals.getPyQt5ModulesDirectory(), "plugins") + libPaths = ( + os.path.join(Globals.getPyQt5ModulesDirectory(), "plugins"), + os.path.join(Globals.getPyQt5ModulesDirectory(), "Qt5", "plugins"), + ) + + libraryPaths = QApplication.libraryPaths() + for libPath in libPaths: if os.path.exists(libPath): libPath = QDir.fromNativeSeparators(libPath) - libraryPaths = QApplication.libraryPaths() if libPath not in libraryPaths: libraryPaths.insert(0, libPath) - QApplication.setLibraryPaths(libraryPaths) + QApplication.setLibraryPaths(libraryPaths) # the translator must not be deleted, therefore we save them here loaded_translators = {}