1
0
fixes AttributeError: 'QTextEdit' object has no attribute 'text'
This commit is contained in:
SomberNight
2018-01-08 22:36:13 +01:00
parent 553bf98664
commit 41660d26e9

View File

@@ -92,7 +92,7 @@ class SeedLayout(QVBoxLayout):
self.options = options
if title:
self.addWidget(WWLabel(title))
self.seed_e = QTextEdit()
self.seed_e = ButtonsTextEdit()
if seed:
self.seed_e.setText(seed)
else: