'From Jasmine-rc1 of 7 October 2004 [latest update: #58] on 13 October 2004 at 6:02:45 pm'! "Change Set: ProjectHang Date: 12 October 2004 Author: Andreas Raab Fix the lock-up when jumping between projects and having multiple top projects."! !Project methodsFor: 'active process' stamp: 'ar 10/12/2004 21:46'! depth "Return the depth of this project from the top. topProject = 0, next = 1, etc." "Project current depth." | depth project | depth _ 0. project _ self. [project isTopProject] whileFalse: [project _ project parent. depth _ depth + 1]. ^ depth! !