# HG changeset patch # User Claus Gittinger # Date 1476290836 -7200 # Node ID 2d11a0d97ad533ad6f2c5bdba86c6dae373e4ef7 # Parent ee594aebfa604ea406417f94f89a6c3389a46ffc #UI_ENHANCEMENT by cg class: DirectoryContentsBrowser changed: #processEvent: Accept key is no longer a fileIn. (confusing and error prone, as Accept with focus on editor is a file-save operation) diff -r ee594aebfa60 -r 2d11a0d97ad5 DirectoryContentsBrowser.st --- a/DirectoryContentsBrowser.st Wed Oct 12 18:47:04 2016 +0200 +++ b/DirectoryContentsBrowser.st Wed Oct 12 18:47:16 2016 +0200 @@ -1846,12 +1846,15 @@ rawKey := anEvent rawKey. "/ (key ~= #'Alt_L') ifTrue:[self halt.]. - key == #Accept ifTrue:[ - self withActivityIndicationDo:[ - self fileFileIn. - ]. - ^ true. - ]. + "/ cg: removed; too dangerous, because it depends on which view has + "/ the focus - in the codeView, it is a save; in the list, it is a fileIn. + "/ this is confusing to newcomers. +"/ key == #Accept ifTrue:[ +"/ self withActivityIndicationDo:[ +"/ self fileFileIn. +"/ ]. +"/ ^ true. +"/ ]. key == #Paste ifTrue:[ self pasteFiles. ^ true.