# HG changeset patch # User Claus Gittinger # Date 1504269153 -7200 # Node ID 44cc5203397e594363c40fe173aa91ce660d0a22 # Parent 377c07366fc8a120ef2ef62f67bfdeb17e5665cb #REFACTORING by cg class: TextView changed: #keyPress:x:y: diff -r 377c07366fc8 -r 44cc5203397e TextView.st --- a/TextView.st Fri Sep 01 14:30:44 2017 +0200 +++ b/TextView.st Fri Sep 01 14:32:33 2017 +0200 @@ -1905,6 +1905,7 @@ (key == #Find) ifTrue:[self search. ^self]. @@ -1920,6 +1921,8 @@ (key == #SaveAs) ifTrue:[self save. ^self]. (key == #Print) ifTrue:[self doPrint. ^self]. + (key == #OpenWorkspaceOnIt) ifTrue:[self openWorkspaceWithIt. ^self]. + " shift-Fn defines a key-sequence Fn pastes that sequence @@ -1940,8 +1943,8 @@ super keyPress:key x:x y:y - "Modified: / 10-03-2012 / 09:40:01 / cg" "Modified (format): / 30-03-2017 / 22:35:58 / stefan" + "Modified: / 01-09-2017 / 14:32:27 / cg" ! mapped