26 @param infoDict dictionary containing the information to be shown |
26 @param infoDict dictionary containing the information to be shown |
27 @type dict |
27 @type dict |
28 @param parent reference to the parent widget |
28 @param parent reference to the parent widget |
29 @type QWidget |
29 @type QWidget |
30 """ |
30 """ |
31 super(CondaInfoDialog, self).__init__(parent) |
31 super().__init__(parent) |
32 self.setupUi(self) |
32 self.setupUi(self) |
33 self.setWindowFlags(Qt.WindowType.Window) |
33 self.setWindowFlags(Qt.WindowType.Window) |
34 |
34 |
35 self.iconLabel.setPixmap( |
35 self.iconLabel.setPixmap( |
36 UI.PixmapCache.getPixmap("miniconda48")) |
36 UI.PixmapCache.getPixmap("miniconda48")) |