GUI classes should only init with main GUI as parent

This commit is contained in:
Veronica K. B. Olsen
2021-04-25 17:50:11 +02:00
parent 48695651e1
commit 746268c3ef
11 changed files with 34 additions and 34 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ class GuiQuoteSelect(QDialog):
selectedQuote = ""
def __init__(self, theParent=None, currentQuote="\""):
def __init__(self, theParent=None, currentQuote='"'):
QDialog.__init__(self, parent=theParent)
self.mainConf = nw.CONFIG