Changeset 944:ebf5b88d3fd2
- Timestamp:
- 04/28/19 17:35:08 (6 years ago)
- Branch:
- python3
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/cef.py
r943 r944 194 194 self._lastProgress = progress 195 195 if results!=SIMBRIEF_RESULT_NONE: 196 gobject.source_remove(self._timeoutID) 196 if self._timeoutID is not None: 197 gobject.source_remove(self._timeoutID) 197 198 self._plan = None 198 199 199 self._updateProgressFn(progress, results, flightInfo) 200 if self._updateProgressFn is not None: 201 self._updateProgressFn(progress, results, flightInfo) 200 202 201 203 def _timedOut(self):
Note:
See TracChangeset
for help on using the changeset viewer.