162 self.resultbox.ensureCursorVisible() |
162 self.resultbox.ensureCursorVisible() |
163 |
163 |
164 # check for a changed project file |
164 # check for a changed project file |
165 if self.__updateCommand: |
165 if self.__updateCommand: |
166 for line in out.splitlines(): |
166 for line in out.splitlines(): |
167 if '.e4p' in line: |
167 if ( |
|
168 '.epj' in line or |
|
169 '.e4p' in line |
|
170 ): |
168 self.__hasAddOrDelete = True |
171 self.__hasAddOrDelete = True |
169 break |
172 break |
170 |
173 |
171 QCoreApplication.processEvents() |
174 QCoreApplication.processEvents() |
172 |
175 |