773 """ |
773 """ |
774 super(ConfigurationDialog, self).__init__(parent) |
774 super(ConfigurationDialog, self).__init__(parent) |
775 if name: |
775 if name: |
776 self.setObjectName(name) |
776 self.setObjectName(name) |
777 self.setModal(modal) |
777 self.setModal(modal) |
|
778 self.setWindowFlags(Qt.Window) |
|
779 |
778 self.layout = QVBoxLayout(self) |
780 self.layout = QVBoxLayout(self) |
779 self.layout.setContentsMargins(0, 0, 0, 0) |
781 self.layout.setContentsMargins(0, 0, 0, 0) |
780 self.layout.setSpacing(0) |
782 self.layout.setSpacing(0) |
781 |
783 |
782 self.cw = ConfigurationWidget(self, fromEric=fromEric, |
784 self.cw = ConfigurationWidget(self, fromEric=fromEric, |