183 """ |
183 """ |
184 super().__init__(parent) |
184 super().__init__(parent) |
185 self.setSizeGripEnabled(True) |
185 self.setSizeGripEnabled(True) |
186 |
186 |
187 self.__layout = QVBoxLayout(self) |
187 self.__layout = QVBoxLayout(self) |
188 self.__layout.setMargin(0) |
188 self.__layout.setContentsMargins(0, 0, 0, 0) |
189 self.setLayout(self.__layout) |
189 self.setLayout(self.__layout) |
190 |
190 |
191 self.cw = PluginUninstallWidget(pluginManager, self) |
191 self.cw = PluginUninstallWidget(pluginManager, self) |
192 size = self.cw.size() |
192 size = self.cw.size() |
193 self.__layout.addWidget(self.cw) |
193 self.__layout.addWidget(self.cw) |