Remove debug print and add test coverage

This commit is contained in:
Veronica K. B. Olsen
2021-02-17 09:53:27 +01:00
parent 7591095f2a
commit fb09066679
8 changed files with 38 additions and 451 deletions
-1
View File
@@ -143,7 +143,6 @@ class GuiPreferencesGeneral(QWidget):
self.guiLang = QComboBox()
self.guiLang.setMinimumWidth(minWidth)
self.theLangs = self.mainConf.listLanguages()
print(self.theLangs)
for lang, langName in self.theLangs:
self.guiLang.addItem(langName, lang)
langIdx = self.guiLang.findData(self.mainConf.guiLang)