1
0

Fix some regressions from layout rework.

This commit is contained in:
Neil Booth
2016-01-13 21:25:48 +09:00
parent 9390a97e9e
commit fd66e15d3d
5 changed files with 10 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ class NetworkDialog(WindowModalDialog):
self.setMinimumSize(375, 20)
self.nlayout = NetworkChoiceLayout(network, config)
vbox = QVBoxLayout(self)
vbox.addLayout(nlayout.layout())
vbox.addLayout(self.nlayout.layout())
vbox.addLayout(Buttons(CancelButton(self), OkButton(self)))
def do_exec(self):