Fixed an issue in the dialog to manage web browser spell checking dictionaries. eric7

Sun, 06 Apr 2025 17:40:58 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 06 Apr 2025 17:40:58 +0200
branch
eric7
changeset 11209
244898adcf72
parent 11208
f776db7cc222
child 11210
dd70d72aac30

Fixed an issue in the dialog to manage web browser spell checking dictionaries.

src/eric7/WebBrowser/SpellCheck/ManageDictionariesDialog.py file | annotate | diff | comparison | revisions
--- a/src/eric7/WebBrowser/SpellCheck/ManageDictionariesDialog.py	Sun Apr 06 14:51:33 2025 +0200
+++ b/src/eric7/WebBrowser/SpellCheck/ManageDictionariesDialog.py	Sun Apr 06 17:40:58 2025 +0200
@@ -325,6 +325,7 @@
         itm = QListWidgetItem(
             self.tr("{0} ({1})").format(short, " ".join(locales)), self.dictionariesList
         )
+        itm.setFlags(itm.flags() & ~Qt.ItemFlag.ItemIsUserCheckable)
         itm.setCheckState(Qt.CheckState.Unchecked)
 
         itm.setData(ManageDictionariesDialog.FilenameRole, filename)

eric ide

mercurial