eric6/PluginManager/PluginDetailsDialog.py

changeset 8143
2c730d5fd177
parent 7923
91e843545d9a
child 8218
7c09585bd960
equal deleted inserted replaced
8141:27f636beebad 8143:2c730d5fd177
24 @param details dictionary containing the info to be displayed 24 @param details dictionary containing the info to be displayed
25 @param parent parent of this dialog (QWidget) 25 @param parent parent of this dialog (QWidget)
26 """ 26 """
27 super(PluginDetailsDialog, self).__init__(parent) 27 super(PluginDetailsDialog, self).__init__(parent)
28 self.setupUi(self) 28 self.setupUi(self)
29 self.setWindowFlags(Qt.Window) 29 self.setWindowFlags(Qt.WindowType.Window)
30 30
31 self.__autoactivate = details["autoactivate"] 31 self.__autoactivate = details["autoactivate"]
32 self.__active = details["active"] 32 self.__active = details["active"]
33 33
34 self.moduleNameEdit.setText(details["moduleName"]) 34 self.moduleNameEdit.setText(details["moduleName"])

eric ide

mercurial