218 self.resultbox.ensureCursorVisible() |
218 self.resultbox.ensureCursorVisible() |
219 |
219 |
220 # check for a changed project file |
220 # check for a changed project file |
221 if self.__updateCommand: |
221 if self.__updateCommand: |
222 for line in out.splitlines(): |
222 for line in out.splitlines(): |
223 if '.e4p' in line or '.e6p' in line: |
223 if ( |
|
224 '.epj' in line or |
|
225 '.e4p' in line |
|
226 ): |
224 self.__hasAddOrDelete = True |
227 self.__hasAddOrDelete = True |
225 break |
228 break |
226 |
229 |
227 QCoreApplication.processEvents() |
230 QCoreApplication.processEvents() |
228 |
231 |