523 """ |
523 """ |
524 super().__init__(parent) |
524 super().__init__(parent) |
525 self.setSizeGripEnabled(True) |
525 self.setSizeGripEnabled(True) |
526 |
526 |
527 self.__layout = QVBoxLayout(self) |
527 self.__layout = QVBoxLayout(self) |
528 self.__layout.setMargin(0) |
528 self.__layout.setContentsMargins(0, 0, 0, 0) |
529 self.setLayout(self.__layout) |
529 self.setLayout(self.__layout) |
530 |
530 |
531 self.cw = PluginInstallWidget(pluginManager, pluginFileNames, self) |
531 self.cw = PluginInstallWidget(pluginManager, pluginFileNames, self) |
532 size = self.cw.size() |
532 size = self.cw.size() |
533 self.__layout.addWidget(self.cw) |
533 self.__layout.addWidget(self.cw) |