AbstractFileBrowser.st
changeset 19158 008bb4bbb5a5
parent 19152 be7202db2c28
child 19173 71aa982cb0cf
equal deleted inserted replaced
19157:1e6a35f896a5 19158:008bb4bbb5a5
  3663 updateCurrentDirectoryWithReread
  3663 updateCurrentDirectoryWithReread
  3664     self updateCurrentDirectory:true
  3664     self updateCurrentDirectory:true
  3665 !
  3665 !
  3666 
  3666 
  3667 withActivityIndicationDo:aBlock
  3667 withActivityIndicationDo:aBlock
  3668 
       
  3669     self activityVisibilityChannel value:true.
  3668     self activityVisibilityChannel value:true.
  3670     [
  3669     [
  3671         self withWaitCursorDo:[
  3670         self withWaitCursorDo:aBlock.
  3672             aBlock value.
       
  3673         ]
       
  3674     ] ensure:[
  3671     ] ensure:[
  3675         self activityVisibilityChannel value:false.
  3672         self activityVisibilityChannel value:false.
  3676     ]
  3673     ]
       
  3674 
       
  3675     "Modified (format): / 11-09-2019 / 16:43:07 / Stefan Vogel"
  3677 ! !
  3676 ! !
  3678 
  3677 
  3679 !AbstractFileBrowser methodsFor:'actions bookmarks'!
  3678 !AbstractFileBrowser methodsFor:'actions bookmarks'!
  3680 
  3679 
  3681 addBookmark
  3680 addBookmark