mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-08 21:11:59 +02:00
Correction for 'Default' GC setting.
This commit is contained in:
parent
f3cfa72051
commit
f611a1e26f
1 changed files with 2 additions and 1 deletions
|
|
@ -725,7 +725,8 @@ class GenerateCoverTab(QWidget):
|
|||
dropdown.addItem(setting,QVariant(setting))
|
||||
if site == _("Default"):
|
||||
self.gc_dropdowns["Default"] = dropdown
|
||||
dropdown.setCurrentIndex(dropdown.findData(QVariant(prefs['gc_site_settings']['Default'])))
|
||||
if 'Default' in prefs['gc_site_settings']:
|
||||
dropdown.setCurrentIndex(dropdown.findData(QVariant(prefs['gc_site_settings']['Default'])))
|
||||
else:
|
||||
self.gc_dropdowns[site] = dropdown
|
||||
if site in prefs['gc_site_settings']:
|
||||
|
|
|
|||
Loading…
Reference in a new issue