554 """ |
554 """ |
555 super().__init__(parent) |
555 super().__init__(parent) |
556 self.setSizeGripEnabled(True) |
556 self.setSizeGripEnabled(True) |
557 |
557 |
558 self.__layout = QVBoxLayout(self) |
558 self.__layout = QVBoxLayout(self) |
559 self.__layout.setMargin(0) |
559 self.__layout.setContentsMargins(0, 0, 0, 0) |
560 self.setLayout(self.__layout) |
560 self.setLayout(self.__layout) |
561 |
561 |
562 self.cw = PluginRepositoryWidget(self) |
562 self.cw = PluginRepositoryWidget(self) |
563 size = self.cw.size() |
563 size = self.cw.size() |
564 self.__layout.addWidget(self.cw) |
564 self.__layout.addWidget(self.cw) |