eric7/UI/FindFileDialog.py

branch
eric7
changeset 8327
666c2b81cbb7
parent 8324
83084f088655
child 8347
ca9ef7600df7
equal deleted inserted replaced
8325:547319e56c60 8327:666c2b81cbb7
57 """ 57 """
58 super().__init__(parent) 58 super().__init__(parent)
59 self.setupUi(self) 59 self.setupUi(self)
60 self.setWindowFlags(Qt.WindowType.Window) 60 self.setWindowFlags(Qt.WindowType.Window)
61 61
62 self.dirPicker.setMode(E5PathPickerModes.DirectoryMode) 62 self.dirPicker.setMode(E5PathPickerModes.DIRECTORY_MODE)
63 self.dirPicker.setInsertPolicy(QComboBox.InsertPolicy.InsertAtTop) 63 self.dirPicker.setInsertPolicy(QComboBox.InsertPolicy.InsertAtTop)
64 self.dirPicker.setSizeAdjustPolicy( 64 self.dirPicker.setSizeAdjustPolicy(
65 QComboBox.SizeAdjustPolicy.AdjustToMinimumContentsLengthWithIcon) 65 QComboBox.SizeAdjustPolicy.AdjustToMinimumContentsLengthWithIcon)
66 66
67 self.__replaceMode = replaceMode 67 self.__replaceMode = replaceMode

eric ide

mercurial