183 """ |
183 """ |
184 from eric7.WebBrowser.SpellCheck.ManageDictionariesDialog import ( |
184 from eric7.WebBrowser.SpellCheck.ManageDictionariesDialog import ( |
185 ManageDictionariesDialog, |
185 ManageDictionariesDialog, |
186 ) |
186 ) |
187 |
187 |
188 dlg = ManageDictionariesDialog(self.__writeableDirectories, self) |
188 dlg = ManageDictionariesDialog( |
|
189 self.__writeableDirectories, |
|
190 enforceUnencryptedDownloads=self.unencryptedCheckBox.isChecked(), |
|
191 parent=self) |
189 dlg.exec() |
192 dlg.exec() |
190 |
193 |
191 self.__populateDictionariesList() |
194 self.__populateDictionariesList() |
192 |
195 |
193 |
196 |