822 """ |
822 """ |
823 super(ConfigurationDialog, self).__init__(parent) |
823 super(ConfigurationDialog, self).__init__(parent) |
824 if name: |
824 if name: |
825 self.setObjectName(name) |
825 self.setObjectName(name) |
826 self.setModal(modal) |
826 self.setModal(modal) |
|
827 self.setWindowFlags(Qt.Window) |
|
828 |
827 self.layout = QVBoxLayout(self) |
829 self.layout = QVBoxLayout(self) |
828 self.layout.setContentsMargins(0, 0, 0, 0) |
830 self.layout.setContentsMargins(0, 0, 0, 0) |
829 self.layout.setSpacing(0) |
831 self.layout.setSpacing(0) |
830 |
832 |
831 self.cw = ConfigurationWidget(self, fromEric=fromEric, |
833 self.cw = ConfigurationWidget(self, fromEric=fromEric, |