seed_input: minor layout improvement

This commit is contained in:
ThomasV 2016-09-30 09:46:47 +02:00
parent 94988bd3f7
commit 6979cdc7d6
1 changed files with 4 additions and 1 deletions

View File

@ -116,8 +116,11 @@ class SeedInputLayout(SeedLayoutBase):
def __init__(self, parent, title, is_seed):
vbox = QVBoxLayout()
vbox.addLayout(self._seed_layout(title=title))
hbox = QHBoxLayout()
hbox.addStretch(1)
self.seed_type_label = QLabel('')
vbox.addWidget(self.seed_type_label)
hbox.addWidget(self.seed_type_label)
vbox.addLayout(hbox)
self.layout_ = vbox
self.parent = parent
self.is_seed = is_seed