diff -r dd54d33d21d2 -r 51aa6c6b66f7 eric6/Preferences/ConfigurationPages/IconsPage.py --- a/eric6/Preferences/ConfigurationPages/IconsPage.py Mon Oct 05 19:51:55 2020 +0200 +++ b/eric6/Preferences/ConfigurationPages/IconsPage.py Tue Oct 06 17:52:44 2020 +0200 @@ -189,7 +189,7 @@ if directories: from .IconsPreviewDialog import IconsPreviewDialog dlg = IconsPreviewDialog(directories, self) - dlg.exec_() + dlg.exec() @pyqtSlot() def on_showDefaultIconsButton_clicked(self): @@ -209,7 +209,7 @@ os.path.join(getConfig('ericIconDir'), defaultIconsPath, "languages"), ], self) - dlg.exec_() + dlg.exec() def create(dlg):