528 """ |
528 """ |
529 super(PluginInstallDialog, self).__init__(parent) |
529 super(PluginInstallDialog, self).__init__(parent) |
530 self.setSizeGripEnabled(True) |
530 self.setSizeGripEnabled(True) |
531 |
531 |
532 self.__layout = QVBoxLayout(self) |
532 self.__layout = QVBoxLayout(self) |
533 self.__layout.setMargin(0) |
533 self.__layout.setContentsMargins(0, 0, 0, 0) |
534 self.setLayout(self.__layout) |
534 self.setLayout(self.__layout) |
535 |
535 |
536 self.cw = PluginInstallWidget(pluginManager, pluginFileNames, self) |
536 self.cw = PluginInstallWidget(pluginManager, pluginFileNames, self) |
537 size = self.cw.size() |
537 size = self.cw.size() |
538 self.__layout.addWidget(self.cw) |
538 self.__layout.addWidget(self.cw) |