30 @param startdir start directory for the selection dialog (string) |
31 @param startdir start directory for the selection dialog (string) |
31 @param project dictionary containing project data |
32 @param project dictionary containing project data |
32 """ |
33 """ |
33 super().__init__(parent) |
34 super().__init__(parent) |
34 self.setupUi(self) |
35 self.setupUi(self) |
|
36 |
|
37 self.fileButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
35 |
38 |
36 self.fileCompleter = E5FileCompleter(self.filenameEdit) |
39 self.fileCompleter = E5FileCompleter(self.filenameEdit) |
37 |
40 |
38 self.startdir = startdir |
41 self.startdir = startdir |
39 |
42 |