We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent c5e110d commit c735d1aCopy full SHA for c735d1a
python/console/console_settings.py
@@ -183,9 +183,9 @@ def restoreSettings(self):
183
self.fontComboBox.setCurrentFont(QFont(settings.value("pythonConsole/fontfamilytext",
184
"Monospace")))
185
self.fontComboBoxEditor.setCurrentFont(QFont(settings.value("pythonConsole/fontfamilytextEditor",
186
- "Monospace")))
+ "Monospace")))
187
self.preloadAPI.setChecked(settings.value("pythonConsole/preloadAPI", True, type=bool))
188
- self.lineEdit.setText(settings.value("pythonConsole/preparedAPIFile"))
+ self.lineEdit.setText(settings.value("pythonConsole/preparedAPIFile", "", type=str))
189
itemTable = settings.value("pythonConsole/userAPI", [])
190
if itemTable:
191
for i in range(len(itemTable)):
0 commit comments