cosmetic
parent
4814eacbad
commit
ed9834ea37
|
@ -341,8 +341,8 @@ class ValidationWidget(QWidget):
|
||||||
|
|
||||||
layout = QVBoxLayout(self)
|
layout = QVBoxLayout(self)
|
||||||
layout.addWidget(self.validation_gbox)
|
layout.addWidget(self.validation_gbox)
|
||||||
self.setMinimumWidth(470)
|
self.setMinimumWidth(500)
|
||||||
self.setMaximumWidth(470)
|
self.setMaximumWidth(500)
|
||||||
|
|
||||||
self.tapes = None
|
self.tapes = None
|
||||||
self.load_tapes_from_file()
|
self.load_tapes_from_file()
|
||||||
|
@ -414,10 +414,9 @@ class UpdateWidget(QWidget):
|
||||||
self.gbox = QGroupBox("Update")
|
self.gbox = QGroupBox("Update")
|
||||||
self.gbox.setLayout(self.grid)
|
self.gbox.setLayout(self.grid)
|
||||||
|
|
||||||
layout = QHBoxLayout()
|
layout = QHBoxLayout(self)
|
||||||
layout.addWidget(self.gbox)
|
layout.addWidget(self.gbox)
|
||||||
layout.setContentsMargins(0, 0, 0, 0)
|
layout.setContentsMargins(0, 0, 0, 0)
|
||||||
self.setLayout(layout)
|
|
||||||
|
|
||||||
self.does_git_exist()
|
self.does_git_exist()
|
||||||
|
|
||||||
|
@ -495,10 +494,9 @@ class InstallWidget(QWidget):
|
||||||
self.gbox = QGroupBox("Install steps")
|
self.gbox = QGroupBox("Install steps")
|
||||||
self.gbox.setLayout(self.grid)
|
self.gbox.setLayout(self.grid)
|
||||||
|
|
||||||
layout = QHBoxLayout()
|
layout = QHBoxLayout(self)
|
||||||
layout.addWidget(self.gbox)
|
layout.addWidget(self.gbox)
|
||||||
layout.setContentsMargins(0, 0, 0, 0)
|
layout.setContentsMargins(0, 0, 0, 0)
|
||||||
self.setLayout(layout)
|
|
||||||
|
|
||||||
self.does_ffmpeg_exist()
|
self.does_ffmpeg_exist()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue